|
6 | 6 |
|
7 | 7 | <groupId>org.arangodb.objectmapper</groupId>
|
8 | 8 | <artifactId>arangodb-objectmapper</artifactId>
|
9 |
| - <version>2.0.8</version> |
| 9 | + <version>2.0.9-SNAPSHOT</version> |
10 | 10 |
|
11 | 11 | <name>ArangoDB object mapper for Java</name>
|
12 | 12 | <description>Java ODM for ArangoDB</description>
|
13 | 13 |
|
14 | 14 | <properties>
|
15 | 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
16 | 16 | </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> |
17 | 35 |
|
18 | 36 | <dependencies>
|
19 | 37 | <dependency>
|
|
52 | 70 | <version>2.9.8</version>
|
53 | 71 | </dependency>
|
54 | 72 | </dependencies>
|
| 73 | + |
55 | 74 | <build>
|
| 75 | + |
56 | 76 | <directory>${basedir}/target</directory>
|
| 77 | + |
57 | 78 | <pluginManagement>
|
58 | 79 | <plugins>
|
59 | 80 | <plugin>
|
|
73 | 94 | </plugin>
|
74 | 95 | </plugins>
|
75 | 96 | </pluginManagement>
|
| 97 | + |
76 | 98 | <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 | + |
77 | 113 | <plugin>
|
78 | 114 | <groupId>com.amashchenko.maven.plugin</groupId>
|
79 | 115 | <artifactId>gitflow-maven-plugin</artifactId>
|
|
82 | 118 | <tychoBuild>true</tychoBuild>
|
83 | 119 | </configuration>
|
84 | 120 | </plugin>
|
| 121 | + |
85 | 122 | <plugin>
|
86 | 123 | <inherited>true</inherited>
|
87 | 124 | <groupId>org.apache.maven.plugins</groupId>
|
|
104 | 141 | </execution>
|
105 | 142 | </executions>
|
106 | 143 | </plugin>
|
| 144 | + |
107 | 145 | <plugin>
|
108 | 146 | <groupId>org.apache.maven.plugins</groupId>
|
109 | 147 | <artifactId>maven-source-plugin</artifactId>
|
|
117 | 155 | </execution>
|
118 | 156 | </executions>
|
119 | 157 | </plugin>
|
| 158 | + |
120 | 159 | <plugin>
|
121 | 160 | <groupId>org.apache.maven.plugins</groupId>
|
122 | 161 | <artifactId>maven-javadoc-plugin</artifactId>
|
|
133 | 172 | </execution>
|
134 | 173 | </executions>
|
135 | 174 | </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 | + |
139 | 176 | <plugin>
|
140 | 177 | <artifactId>maven-assembly-plugin</artifactId>
|
141 | 178 | <version>3.1.1</version>
|
|
187 | 224 | </plugin>
|
188 | 225 |
|
189 | 226 | </plugins>
|
| 227 | + |
190 | 228 | </build>
|
| 229 | + |
191 | 230 | <reporting>
|
192 | 231 | <plugins>
|
193 | 232 | <plugin>
|
|
200 | 239 | </plugin>
|
201 | 240 | </plugins>
|
202 | 241 | </reporting>
|
| 242 | + |
| 243 | + <organization> |
| 244 | + <name>ArangoDB GmbH</name> |
| 245 | + <url>https://www.arangodb.com</url> |
| 246 | + </organization> |
| 247 | + |
203 | 248 | </project>
|
0 commit comments