File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,11 +5,23 @@ Make sure that JAVA_HOME points to Java 8 (the javadoc task fails with Java 11).
55
66To deploy to Maven use
77
8+ ```
9+ mvn release:clean release:prepare
10+ ```
11+
12+ followed by
13+
14+ ```
15+ mvn release:perform
16+ ```
17+
18+ Or make the changes manually and use
19+
820```
921mvn clean deploy -P release
1022```
1123
12- For snapshots we can forego signing and generating javadoc + sources using:
24+ For snapshots we can skip signing and generating javadoc + sources using:
1325
1426```
1527mvn clean deploy
Original file line number Diff line number Diff line change 122122 <autoReleaseAfterClose >true</autoReleaseAfterClose >
123123 </configuration >
124124 </plugin >
125+ <plugin >
126+ <groupId >org.apache.maven.plugins</groupId >
127+ <artifactId >maven-release-plugin</artifactId >
128+ <version >2.5.3</version >
129+ <configuration >
130+ <autoVersionSubmodules >true</autoVersionSubmodules >
131+ <useReleaseProfile >false</useReleaseProfile >
132+ <releaseProfiles >release</releaseProfiles >
133+ <goals >deploy</goals >
134+ </configuration >
135+ </plugin >
125136 </plugins >
126137 </build >
127138
You can’t perform that action at this time.
0 commit comments