Setting default values for custom Maven 2 properties

前端 未结 6 1805
误落风尘
误落风尘 2020-12-01 03:05

I have a Maven pom.xml with a plugin that I want to be able to control on the command line. Everything works otherwise fine, except even after searching the net a while I ca

相关标签:
6条回答
  • 2020-12-01 03:46

    I took sal's approach but flatten it a bit.

    <profiles>
      <profile>
        <id>default</id>
        <activation>
          <activeByDefault>true</activeByDefault>
        </activation>
        <build>
         <plugin>
           <configuration>
            <version>LATEST</version>
           </configuration>
         </plugin>
        </build>
      </profile>
    </profiles>
    

    Now you have 2 options:

    1. Using default value: MVN install (all $version will be replaced with LATEST)

    2. Using own value: MVN install -P! Default -Dversion=0.9 (all $version will be 0.9)

    0 讨论(0)
  • 2020-12-01 03:58

    You could use something like below:

    <profile>
        <id>default</id>
        <properties>
            <env>default</env>
            <myProperty>someValue</myProperty>            
        </properties>
        <activation>
            <activeByDefault>true</activeByDefault>
        </activation>
    </profile>
    
    0 讨论(0)
  • 2020-12-01 04:02

    This might work for you:

    <profiles>
      <profile>
        <id>default</id>
        <activation>
          <activeByDefault>true</activeByDefault>
        </activation>
        <build>
         <plugin>
           <configuration>
            <param>Foo</param>
           </configuration>
         </plugin>
        </build>
        ...
      </profile>
      <profile>
        <id>notdefault</id>
        ...
         <build>
          <plugin>
            <configuration>
                <param>${myProperty}</param>
            </configuration>
         </plugin>
         </build>
        ...
      </profile>
    </profiles>
    

    That way,

    mvn clean will use "foo" as your default param. In cases when you need to override, use mvn -P notdefault -DmyProperty=something

    0 讨论(0)
  • 2020-12-01 04:04

    Taylor L's approach works fine, but you don't need the extra profile. You can just declare property values in the POM file.

    <project>
      ...
      <properties>
        <!-- Sets the location that Apache Cargo will use to install containers when they are downloaded. 
             Executions of the plug-in should append the container name and version to this path. 
             E.g. apache-tomcat-5.5.20 --> 
        <cargo.container.install.dir>${user.home}/.m2/cargo/containers</cargo.container.install.dir> 
      </properties> 
    </project>
    

    You can also set properties in your user settings.xml file in the event that you want each user to be able to set their own defaults. We use this approach to hide credentials that the CI server uses for some plug-ins from regular developers.

    0 讨论(0)
  • 2020-12-01 04:05

    You can have the property default value defined in <build>/<properties> or in a profile like shown below. When you supply the property value on command line with -DmyProperty=anotherValue then it will override the definition from the POM. That is, all definitions of property values in the POM are set only a default value for the properties.

    <profile>
        ...
        <properties>
            <myProperty>defaultValue</myProperty>            
        </properties>
        ...
           <configuration>
              <param>${myProperty}</param>
           </configuration>
        ...
    </profile>
    
    0 讨论(0)
  • 2020-12-01 04:06

    @akostadinov's solution works great for common usage... But if the desired property shall be used by reactor component during dependency resolution phase (very early in mvn pom hierarchy processing...) you should use profile "none activation" test mechanism to ensure the optional command line provided value is always prioritized regarding the value provided inside pom.xml. And this whatever deep is your pom hierarchy.

    To do so, add this kind of profile in your parent pom.xml :

     <profiles>
        <profile>
          <id>my.property</id>
          <activation>
            <property>
              <name>!my.property</name>
            </property>
          </activation>
          <properties>
            <my.property>${an.other.property} or a_static_value</my.property>
          </properties>
        </profile>
      </profiles>
    
    0 讨论(0)
提交回复
热议问题