|
17 | 17 | <description>Antares is an SpringBoot extension used to simplify the process of dynamically registering beans to Spring context.</description>
|
18 | 18 | <url>https://github.com/prchen/antares</url>
|
19 | 19 |
|
| 20 | + <licenses> |
| 21 | + <license> |
| 22 | + <name>Apache License, Version 2.0</name> |
| 23 | + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 24 | + <distribution>repo</distribution> |
| 25 | + </license> |
| 26 | + </licenses> |
| 27 | + |
| 28 | + <developers> |
| 29 | + <developer> |
| 30 | + <name>prchen</name> |
| 31 | + |
| 32 | + <organization>prchen</organization> |
| 33 | + <organizationUrl>https://github.com/prchen</organizationUrl> |
| 34 | + </developer> |
| 35 | + </developers> |
| 36 | + |
| 37 | + <scm> |
| 38 | + <connection>scm:git:git://github.com/prchen/antares.git</connection> |
| 39 | + <developerConnection>scm:git:ssh://github.com/prchen/antares.git</developerConnection> |
| 40 | + <url>https://github.com/prchen/antares/tree/master</url> |
| 41 | + </scm> |
| 42 | + |
| 43 | + <distributionManagement> |
| 44 | + <snapshotRepository> |
| 45 | + <id>ossrh</id> |
| 46 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 47 | + </snapshotRepository> |
| 48 | + <repository> |
| 49 | + <id>ossrh</id> |
| 50 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> |
| 51 | + </repository> |
| 52 | + </distributionManagement> |
| 53 | + |
20 | 54 | <properties>
|
21 | 55 | <maven.compiler.source>1.8</maven.compiler.source>
|
22 | 56 | <maven.compiler.target>1.8</maven.compiler.target>
|
|
43 | 77 | <plugin>
|
44 | 78 | <groupId>org.apache.maven.plugins</groupId>
|
45 | 79 | <artifactId>maven-source-plugin</artifactId>
|
| 80 | + <version>2.2.1</version> |
46 | 81 | <executions>
|
47 | 82 | <execution>
|
48 | 83 | <id>attach-sources</id>
|
49 | 84 | <goals>
|
50 |
| - <goal>jar</goal> |
| 85 | + <goal>jar-no-fork</goal> |
51 | 86 | </goals>
|
52 | 87 | </execution>
|
53 | 88 | </executions>
|
54 | 89 | </plugin>
|
55 | 90 | <plugin>
|
56 | 91 | <groupId>org.apache.maven.plugins</groupId>
|
57 | 92 | <artifactId>maven-javadoc-plugin</artifactId>
|
| 93 | + <version>2.9.1</version> |
58 | 94 | <executions>
|
59 | 95 | <execution>
|
60 | 96 | <id>attach-javadocs</id>
|
|
64 | 100 | </execution>
|
65 | 101 | </executions>
|
66 | 102 | </plugin>
|
| 103 | + <plugin> |
| 104 | + <groupId>org.apache.maven.plugins</groupId> |
| 105 | + <artifactId>maven-gpg-plugin</artifactId> |
| 106 | + <version>1.5</version> |
| 107 | + <executions> |
| 108 | + <execution> |
| 109 | + <id>sign-artifacts</id> |
| 110 | + <phase>verify</phase> |
| 111 | + <goals> |
| 112 | + <goal>sign</goal> |
| 113 | + </goals> |
| 114 | + </execution> |
| 115 | + </executions> |
| 116 | + </plugin> |
| 117 | + <plugin> |
| 118 | + <groupId>org.sonatype.plugins</groupId> |
| 119 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 120 | + <version>1.6.7</version> |
| 121 | + <extensions>true</extensions> |
| 122 | + <configuration> |
| 123 | + <serverId>ossrh</serverId> |
| 124 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 125 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 126 | + </configuration> |
| 127 | + </plugin> |
67 | 128 | </plugins>
|
68 | 129 | </build>
|
69 |
| - |
70 |
| - <distributionManagement> |
71 |
| - <snapshotRepository> |
72 |
| - <id>snapshots</id> |
73 |
| - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
74 |
| - </snapshotRepository> |
75 |
| - <repository> |
76 |
| - <id>central</id> |
77 |
| - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> |
78 |
| - </repository> |
79 |
| - </distributionManagement> |
80 |
| - |
81 | 130 | </project>
|
0 commit comments