Maven: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 32: Line 32:
* [https://maven.apache.org/plugins/maven-deploy-plugin/deploy-mojo.html Maven Deploy Optional Parameters]
* [https://maven.apache.org/plugins/maven-deploy-plugin/deploy-mojo.html Maven Deploy Optional Parameters]
* [https://maven.apache.org/guides/mini/guide-encryption.html Maven Encrypt Master Password]
* [https://maven.apache.org/guides/mini/guide-encryption.html Maven Encrypt Master Password]
* [[Bazel]]

Revision as of 04:49, 17 June 2022

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

Distribution

<settings>
    [...]
    <profiles>
        <profile>
        <id>nex</id>
        <properties>
            <altSnapshotDeploymentRepository>snapshots::default::https://nex.chorke.org/repository/maven/snapshots</altSnapshotDeploymentRepository>
            <altReleaseDeploymentRepository>releases::default::https://nex.chorke.org/repository/maven/releases</altReleaseDeploymentRepository>
        </properties>
        </profile>
    </profiles>
</settings>

References