|
168 | 168 | <tagNameFormat>@{project.version}</tagNameFormat>
|
169 | 169 | </configuration>
|
170 | 170 | </plugin>
|
| 171 | + <plugin> |
| 172 | + <groupId>org.apache.maven.plugins</groupId> |
| 173 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 174 | + <version>${maven-javadoc-plugin.version}</version> |
| 175 | + <executions> |
| 176 | + <execution> |
| 177 | + <id>attach-javadoc</id> |
| 178 | + <goals> |
| 179 | + <goal>jar</goal> |
| 180 | + </goals> |
| 181 | + </execution> |
| 182 | + </executions> |
| 183 | + </plugin> |
| 184 | + <plugin> |
| 185 | + <groupId>org.apache.maven.plugins</groupId> |
| 186 | + <artifactId>maven-source-plugin</artifactId> |
| 187 | + <version>${maven-source-plugin.version}</version> |
| 188 | + <executions> |
| 189 | + <execution> |
| 190 | + <id>attach-source</id> |
| 191 | + <goals> |
| 192 | + <goal>jar</goal> |
| 193 | + </goals> |
| 194 | + </execution> |
| 195 | + </executions> |
| 196 | + </plugin> |
| 197 | + |
| 198 | + <plugin> |
| 199 | + <groupId>org.sonatype.plugins</groupId> |
| 200 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 201 | + <version>${nexus-staging-maven-plugin.version}</version> |
| 202 | + <extensions>true</extensions> |
| 203 | + <configuration> |
| 204 | + <serverId>ossrh</serverId> |
| 205 | + <nexusUrl>https://s01.oss.sonatype.org</nexusUrl> |
| 206 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 207 | + </configuration> |
| 208 | + </plugin> |
171 | 209 | <plugin>
|
172 | 210 | <groupId>org.apache.maven.plugins</groupId>
|
173 | 211 | <artifactId>maven-gpg-plugin</artifactId>
|
|
332 | 370 | </plugins>
|
333 | 371 | </build>
|
334 | 372 | </profile>
|
335 |
| - <profile> |
336 |
| - <id>release</id> |
337 |
| - <build> |
338 |
| - <plugins> |
339 |
| - <!-- RELEASE PREP --> |
340 |
| - |
341 |
| - <plugin> |
342 |
| - <groupId>org.apache.maven.plugins</groupId> |
343 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
344 |
| - <version>${maven-javadoc-plugin.version}</version> |
345 |
| - <executions> |
346 |
| - <execution> |
347 |
| - <id>attach-javadoc</id> |
348 |
| - <goals> |
349 |
| - <goal>jar</goal> |
350 |
| - </goals> |
351 |
| - </execution> |
352 |
| - </executions> |
353 |
| - </plugin> |
354 |
| - <plugin> |
355 |
| - <groupId>org.apache.maven.plugins</groupId> |
356 |
| - <artifactId>maven-source-plugin</artifactId> |
357 |
| - <version>${maven-source-plugin.version}</version> |
358 |
| - <executions> |
359 |
| - <execution> |
360 |
| - <id>attach-source</id> |
361 |
| - <goals> |
362 |
| - <goal>jar</goal> |
363 |
| - </goals> |
364 |
| - </execution> |
365 |
| - </executions> |
366 |
| - </plugin> |
367 |
| - |
368 |
| - <plugin> |
369 |
| - <groupId>org.sonatype.plugins</groupId> |
370 |
| - <artifactId>nexus-staging-maven-plugin</artifactId> |
371 |
| - <version>${nexus-staging-maven-plugin.version}</version> |
372 |
| - <extensions>true</extensions> |
373 |
| - <configuration> |
374 |
| - <serverId>ossrh</serverId> |
375 |
| - <nexusUrl>https://s01.oss.sonatype.org</nexusUrl> |
376 |
| - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
377 |
| - </configuration> |
378 |
| - </plugin> |
379 |
| - </plugins> |
380 |
| - </build> |
381 |
| - </profile> |
382 | 373 | </profiles>
|
383 | 374 |
|
384 | 375 | <scm>
|
|
395 | 386 | </snapshotRepository>
|
396 | 387 | <repository>
|
397 | 388 | <id>ossrh</id>
|
398 |
| - <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url> |
| 389 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
399 | 390 | </repository>
|
400 | 391 | </distributionManagement>
|
401 | 392 | </project>
|
0 commit comments