|
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 |
| - |
4 |
| - <parent> |
5 |
| - <groupId>org.sonatype.oss</groupId> |
6 |
| - <artifactId>oss-parent</artifactId> |
7 |
| - <version>7</version> |
8 |
| - </parent> |
9 |
| - |
10 | 3 | <modules>
|
11 | 4 | <module>core</module>
|
12 | 5 | <module>cli</module>
|
|
168 | 161 | </properties>
|
169 | 162 | </profile>
|
170 | 163 | <profile>
|
171 |
| - <id>release-sign-artifacts</id> |
172 |
| - <activation> |
173 |
| - <property> |
174 |
| - <name>performRelease</name> |
175 |
| - <value>true</value> |
176 |
| - </property> |
177 |
| - </activation> |
| 164 | + <id>release</id> |
178 | 165 | <build>
|
179 | 166 | <plugins>
|
180 | 167 | <plugin>
|
181 | 168 | <groupId>org.apache.maven.plugins</groupId>
|
182 | 169 | <artifactId>maven-gpg-plugin</artifactId>
|
183 |
| - <version>1.6</version> |
184 | 170 | <configuration>
|
185 | 171 | <gpgArguments>
|
186 | 172 | <arg>--pinentry-mode</arg>
|
|
197 | 183 | </execution>
|
198 | 184 | </executions>
|
199 | 185 | </plugin>
|
| 186 | + <plugin> |
| 187 | + <groupId>org.sonatype.plugins</groupId> |
| 188 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 189 | + <configuration> |
| 190 | + <serverId>sonatype-nexus-staging</serverId> |
| 191 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 192 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 193 | + </configuration> |
| 194 | + <executions> |
| 195 | + <execution> |
| 196 | + <id>nexus-deploy</id> |
| 197 | + <phase>deploy</phase> |
| 198 | + <goals> |
| 199 | + <goal>deploy</goal> |
| 200 | + </goals> |
| 201 | + </execution> |
| 202 | + </executions> |
| 203 | + </plugin> |
| 204 | + <plugin> |
| 205 | + <groupId>org.apache.maven.plugins</groupId> |
| 206 | + <artifactId>maven-source-plugin</artifactId> |
| 207 | + <executions> |
| 208 | + <execution> |
| 209 | + <phase>package</phase> |
| 210 | + <goals> |
| 211 | + <goal>jar-no-fork</goal> |
| 212 | + </goals> |
| 213 | + </execution> |
| 214 | + </executions> |
| 215 | + </plugin> |
| 216 | + <plugin> |
| 217 | + <groupId>org.apache.maven.plugins</groupId> |
| 218 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 219 | + <configuration> |
| 220 | + <quiet>true</quiet> |
| 221 | + <nonavbar>true</nonavbar> |
| 222 | + <notree>true</notree> |
| 223 | + <nocomment>true</nocomment> |
| 224 | + <nohelp>true</nohelp> |
| 225 | + </configuration> |
| 226 | + <executions> |
| 227 | + <execution> |
| 228 | + <id>attach-javadocs</id> |
| 229 | + <goals> |
| 230 | + <goal>jar</goal> |
| 231 | + </goals> |
| 232 | + </execution> |
| 233 | + </executions> |
| 234 | + </plugin> |
200 | 235 | </plugins>
|
201 | 236 | </build>
|
202 | 237 | </profile>
|
|
254 | 289 | <artifactId>maven-shade-plugin</artifactId>
|
255 | 290 | <version>3.2.4</version>
|
256 | 291 | </plugin>
|
| 292 | + <plugin> |
| 293 | + <groupId>org.sonatype.plugins</groupId> |
| 294 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 295 | + <version>1.6.8</version> |
| 296 | + <extensions>true</extensions> |
| 297 | + </plugin> |
257 | 298 | </plugins>
|
258 | 299 | </pluginManagement>
|
259 | 300 | <plugins>
|
260 |
| - <plugin> |
261 |
| - <groupId>org.apache.maven.plugins</groupId> |
262 |
| - <artifactId>maven-compiler-plugin</artifactId> |
263 |
| - </plugin> |
264 |
| - <plugin> |
265 |
| - <groupId>org.apache.maven.plugins</groupId> |
266 |
| - <artifactId>maven-source-plugin</artifactId> |
267 |
| - <executions> |
268 |
| - <execution> |
269 |
| - <phase>package</phase> |
270 |
| - <goals> |
271 |
| - <goal>jar-no-fork</goal> |
272 |
| - </goals> |
273 |
| - </execution> |
274 |
| - </executions> |
275 |
| - </plugin> |
276 | 301 | <plugin>
|
277 | 302 | <groupId>org.apache.maven.plugins</groupId>
|
278 | 303 | <artifactId>maven-release-plugin</artifactId>
|
|
282 | 307 | <releaseProfiles>release</releaseProfiles>
|
283 | 308 | </configuration>
|
284 | 309 | </plugin>
|
285 |
| - <plugin> |
286 |
| - <groupId>org.apache.maven.plugins</groupId> |
287 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
288 |
| - <configuration> |
289 |
| - <quiet>true</quiet> |
290 |
| - <nonavbar>true</nonavbar> |
291 |
| - <notree>true</notree> |
292 |
| - <nocomment>true</nocomment> |
293 |
| - <nohelp>true</nohelp> |
294 |
| - </configuration> |
295 |
| - <executions> |
296 |
| - <execution> |
297 |
| - <id>attach-javadocs</id> |
298 |
| - <goals> |
299 |
| - <goal>jar</goal> |
300 |
| - </goals> |
301 |
| - </execution> |
302 |
| - </executions> |
303 |
| - </plugin> |
304 |
| - <plugin> |
305 |
| - <groupId>org.apache.maven.plugins</groupId> |
306 |
| - <artifactId>maven-surefire-plugin</artifactId> |
307 |
| - </plugin> |
308 | 310 | <plugin>
|
309 | 311 | <groupId>com.coveo</groupId>
|
310 | 312 | <artifactId>fmt-maven-plugin</artifactId>
|
|
0 commit comments