You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2020/12/27 19:03:29 UTC

[maven] branch MNG-4645 updated: Use explicit profile id

This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch MNG-4645
in repository https://gitbox.apache.org/repos/asf/maven.git


The following commit(s) were added to refs/heads/MNG-4645 by this push:
     new 892002b  Use explicit profile id
892002b is described below

commit 892002b6f9d58c71b36970d225b64b6647d118cd
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sun Dec 27 20:03:15 2020 +0100

    Use explicit profile id
---
 apache-maven/src/assembly/maven/conf/settings.xml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/apache-maven/src/assembly/maven/conf/settings.xml b/apache-maven/src/assembly/maven/conf/settings.xml
index 47791d6..72d832a 100644
--- a/apache-maven/src/assembly/maven/conf/settings.xml
+++ b/apache-maven/src/assembly/maven/conf/settings.xml
@@ -245,9 +245,7 @@ under the License.
     </profile>
     -->
     <profile>
-      <activation>
-        <activeByDefault>true</activeByDefault>
-      </activation>
+      <id>maven:core:central-repo</id>
       <repositories>
         <repository>
           <id>central</id>
@@ -278,9 +276,11 @@ under the License.
   <!-- activeProfiles
    | List of profiles that are active for all builds.
    |
+  -->
   <activeProfiles>
-    <activeProfile>alwaysActiveProfile</activeProfile>
-    <activeProfile>anotherAlwaysActiveProfile</activeProfile>
+    <activeProfile>maven:core:central-repo</activeProfile>
+    <!--
+    activeProfile>anotherAlwaysActiveProfile</activeProfile>
+    -->
   </activeProfiles>
-  -->
 </settings>