|
3 | 3 |
|
4 | 4 | <groupId>com.contentful.java</groupId> |
5 | 5 | <artifactId>java-sdk</artifactId> |
6 | | - <version>10.5.23-SNAPSHOT</version> |
| 6 | + <version>10.5.23</version> |
7 | 7 | <packaging>jar</packaging> |
8 | 8 |
|
9 | 9 | <name>${project.groupId}:${project.artifactId}</name> |
10 | 10 | <description>Java SDK for Contentful's Content Delivery API.</description> |
11 | 11 | <url>http://github.com/contentful/contentful.java</url> |
12 | 12 |
|
13 | | - <parent> |
14 | | - <groupId>org.sonatype.oss</groupId> |
15 | | - <artifactId>oss-parent</artifactId> |
16 | | - <version>7</version> |
17 | | - </parent> |
18 | | - |
19 | 13 | <scm> |
20 | 14 | <url>http://github.com/contentful/contentful.java</url> |
21 | 15 | <connection>scm:git:git://github.com/contentful/contentful.java.git</connection> |
|
40 | 34 | <url>http://contentful.com</url> |
41 | 35 | </organization> |
42 | 36 |
|
| 37 | + <developers> |
| 38 | + <developer> |
| 39 | + <id>rafal</id> |
| 40 | + <name>Rafal Niski</name> |
| 41 | + |
| 42 | + </developer> |
| 43 | + </developers> |
| 44 | + |
43 | 45 | <properties> |
44 | 46 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
45 | 47 | <project.reporting.sourceEncoding>UTF-8</project.reporting.sourceEncoding> |
|
247 | 249 | </execution> |
248 | 250 | </executions> |
249 | 251 | </plugin> |
| 252 | + <plugin> |
| 253 | + <groupId>org.sonatype.central</groupId> |
| 254 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 255 | + <version>0.8.0</version> |
| 256 | + <extensions>true</extensions> |
| 257 | + <configuration> |
| 258 | + <publishingServerId>central</publishingServerId> |
| 259 | + </configuration> |
| 260 | + </plugin> |
| 261 | + <plugin> |
| 262 | + <groupId>org.apache.maven.plugins</groupId> |
| 263 | + <artifactId>maven-source-plugin</artifactId> |
| 264 | + <version>3.3.0</version> |
| 265 | + <executions> |
| 266 | + <execution> |
| 267 | + <id>attach-sources</id> |
| 268 | + <goals> |
| 269 | + <goal>jar</goal> |
| 270 | + </goals> |
| 271 | + </execution> |
| 272 | + </executions> |
| 273 | + </plugin> |
| 274 | + <plugin> |
| 275 | + <groupId>org.apache.maven.plugins</groupId> |
| 276 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 277 | + <version>3.6.3</version> |
| 278 | + <executions> |
| 279 | + <execution> |
| 280 | + <id>attach-javadocs</id> |
| 281 | + <goals> |
| 282 | + <goal>jar</goal> |
| 283 | + </goals> |
| 284 | + </execution> |
| 285 | + </executions> |
| 286 | + </plugin> |
| 287 | + <plugin> |
| 288 | + <groupId>org.apache.maven.plugins</groupId> |
| 289 | + <artifactId>maven-gpg-plugin</artifactId> |
| 290 | + <version>3.1.0</version> |
| 291 | + <executions> |
| 292 | + <execution> |
| 293 | + <id>sign-artifacts</id> |
| 294 | + <phase>verify</phase> |
| 295 | + <goals> |
| 296 | + <goal>sign</goal> |
| 297 | + </goals> |
| 298 | + </execution> |
| 299 | + </executions> |
| 300 | + </plugin> |
250 | 301 | </plugins> |
251 | 302 | </build> |
252 | 303 | </project> |
0 commit comments