|
84 | 84 | <encoding>UTF-8</encoding>
|
85 | 85 | </configuration>
|
86 | 86 | </plugin>
|
87 |
| - <plugin> |
88 |
| - <groupId>org.sonatype.plugins</groupId> |
89 |
| - <artifactId>nexus-staging-maven-plugin</artifactId> |
90 |
| - <version>1.6.7</version> |
91 |
| - <extensions>true</extensions> |
92 |
| - <configuration> |
93 |
| - <serverId>ossrh</serverId> |
94 |
| - <nexusUrl>https://aws.oss.sonatype.org</nexusUrl> |
95 |
| - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
96 |
| - </configuration> |
97 |
| - </plugin> |
98 | 87 | </plugins>
|
99 | 88 | </pluginManagement>
|
| 89 | + <plugins> |
| 90 | + <plugin> |
| 91 | + <groupId>org.apache.maven.plugins</groupId> |
| 92 | + <artifactId>maven-source-plugin</artifactId> |
| 93 | + <version>2.2.1</version> |
| 94 | + <executions> |
| 95 | + <execution> |
| 96 | + <id>attach-sources</id> |
| 97 | + <goals> |
| 98 | + <goal>jar-no-fork</goal> |
| 99 | + </goals> |
| 100 | + </execution> |
| 101 | + </executions> |
| 102 | + </plugin> |
| 103 | + <plugin> |
| 104 | + <groupId>org.apache.maven.plugins</groupId> |
| 105 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 106 | + <version>2.9.1</version> |
| 107 | + <executions> |
| 108 | + <execution> |
| 109 | + <id>attach-javadocs</id> |
| 110 | + <goals> |
| 111 | + <goal>jar</goal> |
| 112 | + </goals> |
| 113 | + <configuration> |
| 114 | + <!-- |
| 115 | + TODO-RS: Java 8 is more strict about some javadoc tags. |
| 116 | + We'll need to update quite a few to remove this workaround. |
| 117 | + --> |
| 118 | + <additionalparam>-Xdoclint:none</additionalparam> |
| 119 | + </configuration> |
| 120 | + </execution> |
| 121 | + </executions> |
| 122 | + </plugin> |
| 123 | + <plugin> |
| 124 | + <groupId>org.sonatype.plugins</groupId> |
| 125 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 126 | + <version>1.6.7</version> |
| 127 | + <extensions>true</extensions> |
| 128 | + <configuration> |
| 129 | + <serverId>ossrh</serverId> |
| 130 | + <nexusUrl>https://aws.oss.sonatype.org</nexusUrl> |
| 131 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 132 | + </configuration> |
| 133 | + </plugin> |
| 134 | + </plugins> |
100 | 135 | </build>
|
101 | 136 |
|
102 | 137 | <profiles>
|
|
0 commit comments