|
14 | 14 | <maven.compiler.target>${java.version}</maven.compiler.target>
|
15 | 15 | <spring-boot.version>3.1.2</spring-boot.version>
|
16 | 16 |
|
| 17 | + <distributionManagementSnapshotsUrl>https://oss.sonatype.org/content/repositories/snapshots/</distributionManagementSnapshotsUrl> |
| 18 | + |
17 | 19 | <maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
|
18 | 20 | <maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
|
19 | 21 | <maven-dependency-plugin.version>3.5.0</maven-dependency-plugin.version>
|
|
217 | 219 | </profile>
|
218 | 220 | </profiles>
|
219 | 221 |
|
| 222 | + <!-- Various information needed for a release --> |
| 223 | + <url>https://www.flowable.org</url> |
| 224 | + <licenses> |
| 225 | + <license> |
| 226 | + <name>Apache v2</name> |
| 227 | + <url>https://www.apache.org/licenses/LICENSE-2.0.html</url> |
| 228 | + </license> |
| 229 | + </licenses> |
| 230 | + <organization> |
| 231 | + <name>Flowable</name> |
| 232 | + <url>https://www.flowable.org</url> |
| 233 | + </organization> |
| 234 | + <developers> |
| 235 | + <developer> |
| 236 | + <name>Tijs Rademakers</name> |
| 237 | + <organization>Flowable</organization> |
| 238 | + <url>https://www.flowable.org</url> |
| 239 | + </developer> |
| 240 | + <developer> |
| 241 | + <name>Joram Barrez</name> |
| 242 | + <organization>Flowable</organization> |
| 243 | + <url>https://www.flowable.org</url> |
| 244 | + </developer> |
| 245 | + <developer> |
| 246 | + <name>Filip Hrisafov</name> |
| 247 | + <organization>Flowable</organization> |
| 248 | + <url>https://www.flowable.org</url> |
| 249 | + </developer> |
| 250 | + <developer> |
| 251 | + <name>Valentin Zickner</name> |
| 252 | + <organization>Flowable</organization> |
| 253 | + <url>https://www.flowable.org</url> |
| 254 | + </developer> |
| 255 | + </developers> |
| 256 | + <issueManagement> |
| 257 | + <system>Github issues</system> |
| 258 | + <url>https://github.com/flowable/flowable-external-client-java/issues</url> |
| 259 | + </issueManagement> |
| 260 | + <scm> |
| 261 | + <url>git@github.com:flowable/flowable-external-client-java.git</url> |
| 262 | + <connection>scm:git:git@github.com:flowable/flowable-external-client-java.git</connection> |
| 263 | + <developerConnection>scm:git:git@github.com:flowable/flowable-external-client-java.git</developerConnection> |
| 264 | + </scm> |
| 265 | + <distributionManagement> |
| 266 | + <snapshotRepository> |
| 267 | + <id>sonatype-nexus-snapshots</id> |
| 268 | + <name>Sonatype Nexus Snapshots</name> |
| 269 | + <url>${distributionManagementSnapshotsUrl}</url> |
| 270 | + </snapshotRepository> |
| 271 | + <repository> |
| 272 | + <id>sonatype-nexus-staging</id> |
| 273 | + <name>Nexus Release Repository</name> |
| 274 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 275 | + </repository> |
| 276 | + </distributionManagement> |
| 277 | + |
220 | 278 | </project>
|
0 commit comments