|
56 | 56 | <developerConnection>scm:git:git@github.com:Skelp/verifier.git</developerConnection>
|
57 | 57 | </scm>
|
58 | 58 |
|
| 59 | + <distributionManagement> |
| 60 | + <snapshotRepository> |
| 61 | + <id>ossrh</id> |
| 62 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 63 | + </snapshotRepository> |
| 64 | + <repository> |
| 65 | + <id>ossrh</id> |
| 66 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 67 | + </repository> |
| 68 | + </distributionManagement> |
| 69 | + |
59 | 70 | <developers>
|
60 | 71 | <developer>
|
61 | 72 | <id>neocotic</id>
|
|
91 | 102 |
|
92 | 103 | <build>
|
93 | 104 | <plugins>
|
| 105 | + <plugin> |
| 106 | + <groupId>org.apache.maven.plugins</groupId> |
| 107 | + <artifactId>maven-gpg-plugin</artifactId> |
| 108 | + <version>1.6</version> |
| 109 | + <executions> |
| 110 | + <execution> |
| 111 | + <id>sign-artifacts</id> |
| 112 | + <phase>verify</phase> |
| 113 | + <goals> |
| 114 | + <goal>sign</goal> |
| 115 | + </goals> |
| 116 | + </execution> |
| 117 | + </executions> |
| 118 | + </plugin> |
94 | 119 | <plugin>
|
95 | 120 | <groupId>org.apache.maven.plugins</groupId>
|
96 | 121 | <artifactId>maven-jar-plugin</artifactId>
|
|
104 | 129 | </archive>
|
105 | 130 | </configuration>
|
106 | 131 | </plugin>
|
| 132 | + <plugin> |
| 133 | + <groupId>org.apache.maven.plugins</groupId> |
| 134 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 135 | + <version>2.10.4</version> |
| 136 | + <executions> |
| 137 | + <execution> |
| 138 | + <id>attach-javadocs</id> |
| 139 | + <goals> |
| 140 | + <goal>jar</goal> |
| 141 | + </goals> |
| 142 | + </execution> |
| 143 | + </executions> |
| 144 | + </plugin> |
| 145 | + <plugin> |
| 146 | + <groupId>org.apache.maven.plugins</groupId> |
| 147 | + <artifactId>maven-source-plugin</artifactId> |
| 148 | + <version>3.0.1</version> |
| 149 | + <executions> |
| 150 | + <execution> |
| 151 | + <id>attach-sources</id> |
| 152 | + <goals> |
| 153 | + <goal>jar-no-fork</goal> |
| 154 | + </goals> |
| 155 | + </execution> |
| 156 | + </executions> |
| 157 | + </plugin> |
107 | 158 | <plugin>
|
108 | 159 | <groupId>org.apache.maven.plugins</groupId>
|
109 | 160 | <artifactId>maven-surefire-plugin</artifactId>
|
|
184 | 235 | </execution>
|
185 | 236 | </executions>
|
186 | 237 | </plugin>
|
| 238 | + <plugin> |
| 239 | + <groupId>org.sonatype.plugins</groupId> |
| 240 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 241 | + <version>1.6.7</version> |
| 242 | + <extensions>true</extensions> |
| 243 | + <configuration> |
| 244 | + <serverId>ossrh</serverId> |
| 245 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 246 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 247 | + </configuration> |
| 248 | + </plugin> |
187 | 249 | </plugins>
|
188 | 250 | </build>
|
189 | 251 | </project>
|
0 commit comments