|
16 | 16 | <version>3.0-SNAPSHOT</version>
|
17 | 17 | <packaging>pom</packaging>
|
18 | 18 |
|
| 19 | + <name>Launcher Parent</name> |
| 20 | + <description>Launcher Parent</description> |
| 21 | + <url>https://github.com/fujitsu/launcher</url> |
| 22 | + |
| 23 | + <licenses> |
| 24 | + <license> |
| 25 | + <name>EPL 2.0</name> |
| 26 | + <url>http://www.eclipse.org/legal/epl-2.0</url> |
| 27 | + <distribution>repo</distribution> |
| 28 | + </license> |
| 29 | + </licenses> |
| 30 | + |
| 31 | + <developers> |
| 32 | + <developer> |
| 33 | + <name>Launcher Team</name> |
| 34 | + <organization>Fujitsu Limited</organization> |
| 35 | + <organizationUrl>https://fujitsu.com</organizationUrl> |
| 36 | + </developer> |
| 37 | + </developers> |
| 38 | + |
| 39 | + <scm> |
| 40 | + <connection>scm:git:git@github.com:fujitsu/launcher.git</connection> |
| 41 | + <developerConnection>scm:git:git@github.com:fujitsu/launcher.git</developerConnection> |
| 42 | + <url>https://github.com/fujitsu/launcher</url> |
| 43 | + </scm> |
| 44 | + |
| 45 | + <distributionManagement> |
| 46 | + <snapshotRepository> |
| 47 | + <id>ossrh</id> |
| 48 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 49 | + </snapshotRepository> |
| 50 | + <repository> |
| 51 | + <id>ossrh</id> |
| 52 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 53 | + </repository> |
| 54 | + </distributionManagement> |
| 55 | + |
19 | 56 | <modules>
|
20 | 57 | <module>launcher-impl</module>
|
21 | 58 | <module>launcher-dist</module>
|
|
25 | 62 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
26 | 63 | <maven.compiler.source>1.8</maven.compiler.source>
|
27 | 64 | <maven.compiler.target>1.8</maven.compiler.target>
|
| 65 | + <maven.deploy.skip>true</maven.deploy.skip> |
28 | 66 | <mp.config.version>2.0</mp.config.version>
|
29 | 67 | <mp.fault-tolerance.version>3.0</mp.fault-tolerance.version>
|
30 | 68 | <mp.health.version>3.1</mp.health.version>
|
|
50 | 88 | <jackson.version>2.9.4</jackson.version>
|
51 | 89 | <opentracing-tracerresolver.version>0.1.5</opentracing-tracerresolver.version>
|
52 | 90 | <maven.clean.plugin.version>3.0.0</maven.clean.plugin.version>
|
| 91 | + <maven.deploy.plugin.version>2.8.2</maven.deploy.plugin.version> |
| 92 | + <maven.gpg.plugin.version>3.0.1</maven.gpg.plugin.version> |
| 93 | + <maven.javadoc.plugin.version>3.2.0</maven.javadoc.plugin.version> |
53 | 94 | <maven.shade.plugin.version>3.1.0</maven.shade.plugin.version>
|
| 95 | + <maven.source.plugin.version>3.2.1</maven.source.plugin.version> |
| 96 | + <flatten.maven.plugin.version>1.2.7</flatten.maven.plugin.version> |
54 | 97 | <hk2.plugin.version>2.5.0</hk2.plugin.version>
|
55 | 98 | <concurrent-api.version>1.1.1</concurrent-api.version>
|
56 | 99 | </properties>
|
|
346 | 389 | <artifactId>maven-clean-plugin</artifactId>
|
347 | 390 | <version>${maven.clean.plugin.version}</version>
|
348 | 391 | </plugin>
|
| 392 | + <plugin> |
| 393 | + <groupId>org.apache.maven.plugins</groupId> |
| 394 | + <artifactId>maven-deploy-plugin</artifactId> |
| 395 | + <version>${maven.deploy.plugin.version}</version> |
| 396 | + </plugin> |
| 397 | + <plugin> |
| 398 | + <groupId>org.apache.maven.plugins</groupId> |
| 399 | + <artifactId>maven-gpg-plugin</artifactId> |
| 400 | + <version>${maven.gpg.plugin.version}</version> |
| 401 | + </plugin> |
| 402 | + <plugin> |
| 403 | + <groupId>org.apache.maven.plugins</groupId> |
| 404 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 405 | + <version>${maven.javadoc.plugin.version}</version> |
| 406 | + </plugin> |
349 | 407 | <plugin>
|
350 | 408 | <groupId>org.apache.maven.plugins</groupId>
|
351 | 409 | <artifactId>maven-shade-plugin</artifactId>
|
352 | 410 | <version>${maven.shade.plugin.version}</version>
|
353 | 411 | </plugin>
|
| 412 | + <plugin> |
| 413 | + <groupId>org.apache.maven.plugins</groupId> |
| 414 | + <artifactId>maven-source-plugin</artifactId> |
| 415 | + <version>${maven.source.plugin.version}</version> |
| 416 | + </plugin> |
| 417 | + <plugin> |
| 418 | + <groupId>org.codehaus.mojo</groupId> |
| 419 | + <artifactId>flatten-maven-plugin</artifactId> |
| 420 | + <version>${flatten.maven.plugin.version}</version> |
| 421 | + </plugin> |
354 | 422 | </plugins>
|
355 | 423 | </pluginManagement>
|
356 | 424 | </build>
|
|
0 commit comments