Skip to content
This repository was archived by the owner on Jan 10, 2020. It is now read-only.

Commit 2324d66

Browse files
author
Jenkins
committed
Merge branch 'release/2.0.9-SNAPSHOT'
2 parents 0aa4cbe + 002b9b7 commit 2324d66

File tree

1 file changed

+49
-4
lines changed

1 file changed

+49
-4
lines changed

pom.xml

Lines changed: 49 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,32 @@
66

77
<groupId>org.arangodb.objectmapper</groupId>
88
<artifactId>arangodb-objectmapper</artifactId>
9-
<version>2.0.8</version>
9+
<version>2.0.9-SNAPSHOT</version>
1010

1111
<name>ArangoDB object mapper for Java</name>
1212
<description>Java ODM for ArangoDB</description>
1313

1414
<properties>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1616
</properties>
17+
18+
<distributionManagement>
19+
<snapshotRepository>
20+
<id>ossrh</id>
21+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
22+
</snapshotRepository>
23+
<repository>
24+
<id>ossrh</id>
25+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
26+
</repository>
27+
</distributionManagement>
28+
29+
<repositories>
30+
<repository>
31+
<id>arangodb-snapshots</id>
32+
<url>https://oss.sonatype.org/content/groups/staging</url>
33+
</repository>
34+
</repositories>
1735

1836
<dependencies>
1937
<dependency>
@@ -52,8 +70,11 @@
5270
<version>2.9.8</version>
5371
</dependency>
5472
</dependencies>
73+
5574
<build>
75+
5676
<directory>${basedir}/target</directory>
77+
5778
<pluginManagement>
5879
<plugins>
5980
<plugin>
@@ -73,7 +94,22 @@
7394
</plugin>
7495
</plugins>
7596
</pluginManagement>
97+
7698
<plugins>
99+
100+
<plugin>
101+
<groupId>org.sonatype.plugins</groupId>
102+
<artifactId>nexus-staging-maven-plugin</artifactId>
103+
<version>1.6.5</version>
104+
<extensions>true</extensions>
105+
<configuration>
106+
<serverId>ossrh</serverId>
107+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
108+
<stagingProfileId>84aff6e87e214c</stagingProfileId>
109+
<autoReleaseAfterClose>false</autoReleaseAfterClose>
110+
</configuration>
111+
</plugin>
112+
77113
<plugin>
78114
<groupId>com.amashchenko.maven.plugin</groupId>
79115
<artifactId>gitflow-maven-plugin</artifactId>
@@ -82,6 +118,7 @@
82118
<tychoBuild>true</tychoBuild>
83119
</configuration>
84120
</plugin>
121+
85122
<plugin>
86123
<inherited>true</inherited>
87124
<groupId>org.apache.maven.plugins</groupId>
@@ -104,6 +141,7 @@
104141
</execution>
105142
</executions>
106143
</plugin>
144+
107145
<plugin>
108146
<groupId>org.apache.maven.plugins</groupId>
109147
<artifactId>maven-source-plugin</artifactId>
@@ -117,6 +155,7 @@
117155
</execution>
118156
</executions>
119157
</plugin>
158+
120159
<plugin>
121160
<groupId>org.apache.maven.plugins</groupId>
122161
<artifactId>maven-javadoc-plugin</artifactId>
@@ -133,9 +172,7 @@
133172
</execution>
134173
</executions>
135174
</plugin>
136-
<!--<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId>
137-
<version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase>
138-
<goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> -->
175+
139176
<plugin>
140177
<artifactId>maven-assembly-plugin</artifactId>
141178
<version>3.1.1</version>
@@ -187,7 +224,9 @@
187224
</plugin>
188225

189226
</plugins>
227+
190228
</build>
229+
191230
<reporting>
192231
<plugins>
193232
<plugin>
@@ -200,4 +239,10 @@
200239
</plugin>
201240
</plugins>
202241
</reporting>
242+
243+
<organization>
244+
<name>ArangoDB GmbH</name>
245+
<url>https://www.arangodb.com</url>
246+
</organization>
247+
203248
</project>

0 commit comments

Comments
 (0)