Skip to content

Commit a8bf4da

Browse files
committed
Add information needed for deployment to maven central
1 parent fd91543 commit a8bf4da

File tree

1 file changed

+58
-0
lines changed

1 file changed

+58
-0
lines changed

pom.xml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
<maven.compiler.target>${java.version}</maven.compiler.target>
1515
<spring-boot.version>3.1.2</spring-boot.version>
1616

17+
<distributionManagementSnapshotsUrl>https://oss.sonatype.org/content/repositories/snapshots/</distributionManagementSnapshotsUrl>
18+
1719
<maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
1820
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
1921
<maven-dependency-plugin.version>3.5.0</maven-dependency-plugin.version>
@@ -217,4 +219,60 @@
217219
</profile>
218220
</profiles>
219221

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+
220278
</project>

0 commit comments

Comments
 (0)