|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2 | 2 | <modelVersion>4.0.0</modelVersion>
|
3 |
| - <parent> |
4 |
| - <groupId>org.sonatype.oss</groupId> |
5 |
| - <artifactId>oss-parent</artifactId> |
6 |
| - <version>7</version> |
7 |
| - </parent> |
8 |
| - |
9 | 3 | <groupId>com.google.gwt.gwtmockito</groupId>
|
10 | 4 | <artifactId>gwtmockito-parent</artifactId>
|
11 | 5 | <version>1.1.9-SNAPSHOT</version>
|
|
46 | 40 | </developer>
|
47 | 41 | </developers>
|
48 | 42 |
|
| 43 | + <distributionManagement> |
| 44 | + <snapshotRepository> |
| 45 | + <id>ossrh</id> |
| 46 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 47 | + </snapshotRepository> |
| 48 | + <repository> |
| 49 | + <id>ossrh</id> |
| 50 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 51 | + </repository> |
| 52 | + </distributionManagement> |
| 53 | + |
49 | 54 | <dependencyManagement>
|
50 | 55 | <dependencies>
|
51 | 56 | <dependency>
|
|
96 | 101 | <build>
|
97 | 102 | <pluginManagement>
|
98 | 103 | <plugins>
|
| 104 | + <plugin> |
| 105 | + <groupId>org.sonatype.plugins</groupId> |
| 106 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 107 | + <version>1.6.7</version> |
| 108 | + <extensions>true</extensions> |
| 109 | + <configuration> |
| 110 | + <serverId>ossrh</serverId> |
| 111 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 112 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 113 | + </configuration> |
| 114 | + </plugin> |
99 | 115 | <plugin>
|
100 | 116 | <groupId>org.apache.maven.plugins</groupId>
|
101 | 117 | <artifactId>maven-compiler-plugin</artifactId>
|
|
108 | 124 | <plugin>
|
109 | 125 | <groupId>org.apache.maven.plugins</groupId>
|
110 | 126 | <artifactId>maven-gpg-plugin</artifactId>
|
| 127 | + <version>1.5</version> |
111 | 128 | <executions>
|
112 | 129 | <execution>
|
113 | 130 | <id>sign-artifacts</id>
|
|
118 | 135 | </execution>
|
119 | 136 | </executions>
|
120 | 137 | </plugin>
|
| 138 | + <plugin> |
| 139 | + <groupId>org.apache.maven.plugins</groupId> |
| 140 | + <artifactId>maven-source-plugin</artifactId> |
| 141 | + <version>2.2.1</version> |
| 142 | + <executions> |
| 143 | + <execution> |
| 144 | + <id>attach-sources</id> |
| 145 | + <goals> |
| 146 | + <goal>jar-no-fork</goal> |
| 147 | + </goals> |
| 148 | + </execution> |
| 149 | + </executions> |
| 150 | + </plugin> |
121 | 151 | <plugin>
|
122 | 152 | <groupId>org.apache.maven.plugins</groupId>
|
123 | 153 | <artifactId>maven-javadoc-plugin</artifactId>
|
|
0 commit comments