Property |
Optional? |
Description |
maven.release.name.bin |
Yes |
The name of the binary release file.
Defaults to ${pom.artifactId}-${pom.currentVersion}-bin |
maven.release.name.src |
Yes |
The name of the source release file.
Defaults to ${pom.artifactId}-${pom.currentVersion}-src |
maven.release.distribution.categories |
Yes |
The categories and relative paths of the dependencies to
be included in the release. A list of category:path
pairs, eg shared:lib,tools:tools/lib , where the
category is set via dependency properties:
<dependency>
<groupId>[groupId]</groupId>
<artifactId>[artifactId]</artifactId>
<version>[version]</version>
<properties>
<category>shared</category>
</properties>
</dependency>
<dependency>
<groupId>[anotherGroupId]</groupId>
<artifactId>[anotherArtifactId]</artifactId>
<version>[anotherVersion]</version>
<properties>
<category>tools</category>
</properties>
</dependency>
|