Maven: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 11: Line 11:


==References==
==References==
* [https://stackoverflow.com/questions/3298135 Externalized Maven Distribution Management]
* [http://maven.apache.org/ref/3.3.3/maven-model/maven.html#class_file File specification used to activate the profile]
* [http://maven.apache.org/ref/3.3.3/maven-model/maven.html#class_file File specification used to activate the profile]
* [https://stackoverflow.com/questions/30649044 Activate a Maven Profile if missing a file]
* [https://stackoverflow.com/questions/30649044 Activate a Maven Profile if missing a file]
* [https://maven.apache.org/plugins/maven-deploy-plugin/deploy-mojo.html Maven Deploy Optional Parameters]

Revision as of 02:17, 26 June 2020

<profile>
    <id>ext</id>
    <activation>
        <file>
            <missing>${basedir}/ext</missing>
        </file>
    </activation>
</profile>

References