The activeByDefault doesn't work in the settings.xml, but it does in the
pom:
<profiles>
 <profile>
   <activation>
    <activeByDefault>true</activeByDefault>
   </activation>
  <id>default</id>
 <repositories>
   <repository>
    <id>snaps</id>
    <url>http://cordella.mht.stchome.com:9999/repository</url>
    <snapshots>
    <enabled>true</enabled>
    </snapshots>
   <releases>
    <enabled>false</enabled>
   </releases>
   </repository>
 </repositories>
 </profile>
</profiles>
 
 
In settings.xml, I need to set this:
<activeProfiles>
<activeProfile>default</activeProfile>
</activeProfiles>
 
before it works. Is this a docs bug or a maven bug?

Reply via email to