|
9 | 9 | <packaging>pom</packaging>
|
10 | 10 | <url>http://www.minidev.net/</url>
|
11 | 11 |
|
12 |
| - <parent> |
13 |
| - <groupId>org.sonatype.oss</groupId> |
14 |
| - <artifactId>oss-parent</artifactId> |
15 |
| - <version>7</version> |
16 |
| - </parent> |
17 |
| - |
18 | 12 | <organization>
|
19 | 13 | <name>Chemouni Uriel</name>
|
20 | 14 | <url>http://www.minidev.net/</url>
|
|
48 | 42 |
|
49 | 43 | <build>
|
50 | 44 | <plugins>
|
51 |
| - <!-- <plugin> --> |
52 |
| - <!-- <groupId>org.apache.felix</groupId> --> |
53 |
| - <!-- <artifactId>maven-bundle-plugin</artifactId> --> |
54 |
| - <!-- <extensions>true</extensions> --> |
55 |
| - <!-- <version>2.3.7</version> --> |
56 |
| - <!-- </plugin> --> |
57 |
| - <plugin> |
| 45 | + <plugin> <!-- updated on 29/07/2015 --> |
| 46 | + <groupId>org.sonatype.plugins</groupId> |
| 47 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 48 | + <version>1.6.3</version> |
| 49 | + <extensions>true</extensions> |
| 50 | + <configuration> |
| 51 | + <serverId>ossrh</serverId> |
| 52 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 53 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 54 | + </configuration> |
| 55 | + </plugin> |
| 56 | + |
| 57 | + <plugin> <!-- updated on 29/07/2015 --> |
58 | 58 | <groupId>org.apache.maven.plugins</groupId>
|
59 | 59 | <artifactId>maven-source-plugin</artifactId>
|
60 |
| - <version>2.1.2</version> |
| 60 | + <version>2.4</version> |
61 | 61 | <executions>
|
62 | 62 | <execution>
|
63 | 63 | <id>bind-sources</id>
|
64 | 64 | <goals>
|
65 |
| - <goal>jar</goal> |
| 65 | + <goal>jar-no-fork</goal> |
66 | 66 | </goals>
|
67 | 67 | </execution>
|
68 | 68 | </executions>
|
|
104 | 104 | </configuration>
|
105 | 105 | </plugin>
|
106 | 106 |
|
107 |
| - <plugin> |
| 107 | + <plugin> <!-- updated on 29/07/2015 --> |
108 | 108 | <groupId>org.apache.maven.plugins</groupId>
|
109 | 109 | <artifactId>maven-javadoc-plugin</artifactId>
|
110 |
| - <version>2.10.1</version> |
| 110 | + <version>2.10.3</version> |
111 | 111 | <!-- ONLY NEEDED With jdk 1.7+ -->
|
112 | 112 | <configuration>
|
113 | 113 | <failOnError>false</failOnError>
|
|
162 | 162 | </modules>
|
163 | 163 |
|
164 | 164 | <distributionManagement>
|
165 |
| - <repository> |
166 |
| - <id>sonatype-nexus-staging</id> |
167 |
| - <name>Nexus Release Repository</name> |
168 |
| - <url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url> |
169 |
| - </repository> |
170 |
| - |
171 | 165 | <snapshotRepository>
|
172 |
| - <id>sonatype-nexus-snapshots</id> |
173 |
| - <name>My Nexus Snapshots Repository</name> |
| 166 | + <id>ossrh</id> |
174 | 167 | <url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
175 | 168 | </snapshotRepository>
|
176 | 169 | </distributionManagement>
|
|
204 | 197 | - -sign - -detach-sign -a target/dbunit-embeddedderby-parenttest.jar Note:
|
205 | 198 | "mvn gpg:sign" results in NPE with v 1.o-a.-4, use "mvn package gpg:sign"
|
206 | 199 | instead; see the issue MGPG-18 -->
|
207 |
| - <plugin> |
| 200 | + <plugin> <!-- updated on 29/07/2015 --> |
208 | 201 | <groupId>org.apache.maven.plugins</groupId>
|
209 | 202 | <artifactId>maven-gpg-plugin</artifactId>
|
210 |
| - <!-- <version>1.0-alpha-4</version> --> |
211 |
| - <version>1.2</version> |
| 203 | + |
| 204 | + <version>1.6</version> |
212 | 205 | <executions>
|
213 | 206 | <execution>
|
214 | 207 | <id>sign-artifacts</id>
|
|
239 | 232 | <plugin>
|
240 | 233 | <groupId>org.apache.maven.plugins</groupId>
|
241 | 234 | <artifactId>maven-release-plugin</artifactId>
|
242 |
| - <version>2.1</version> |
| 235 | + <version>2.5.2</version> |
| 236 | + <configuration> |
| 237 | + <autoVersionSubmodules>false</autoVersionSubmodules> |
| 238 | + <useReleaseProfile>false</useReleaseProfile> |
| 239 | + <releaseProfiles>release</releaseProfiles> |
| 240 | + <goals>deploy</goals> |
| 241 | + </configuration> |
243 | 242 | </plugin>
|
244 | 243 | </plugins>
|
245 | 244 | </build>
|
|
0 commit comments