|
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/maven-v4_0_0.xsd"> |
2 | 2 | <modelVersion>4.0.0</modelVersion> |
3 | 3 |
|
4 | | - <parent> |
5 | | - <groupId>org.sonatype.oss</groupId> |
6 | | - <artifactId>oss-parent</artifactId> |
7 | | - <version>9</version> |
8 | | - <relativePath /> |
9 | | - </parent> |
10 | | - |
11 | 4 | <groupId>com.evolvedbinary.appbundler</groupId> |
12 | 5 | <artifactId>appbundler-maven-plugin</artifactId> |
13 | 6 | <packaging>maven-plugin</packaging> |
14 | 7 | <version>3.2.1-SNAPSHOT</version> |
15 | 8 |
|
16 | 9 | <name>AppBundler Maven Plugin</name> |
17 | | - <url>http://github.com/evolvedbinary/appbundler-maven-plugin</url> |
| 10 | + <description>Maven plugin for AppBundler</description> |
| 11 | + <url>https://github.com/evolvedbinary/appbundler-maven-plugin</url> |
| 12 | + <inceptionYear>2019</inceptionYear> |
18 | 13 |
|
19 | 14 | <organization> |
20 | 15 | <name>Evolved Binary</name> |
21 | 16 | <url>https://www.evolvedbinary.com</url> |
22 | 17 | </organization> |
23 | 18 |
|
| 19 | + <developers> |
| 20 | + <developer> |
| 21 | + <id>adamretter</id> |
| 22 | + <name>Adam Retter</name> |
| 23 | + <organization>Evolved Binary</organization> |
| 24 | + <organizationUrl>https://www.evolvedbinary.com</organizationUrl> |
| 25 | + <email>adam@evolvedbinary.com</email> |
| 26 | + </developer> |
| 27 | + </developers> |
| 28 | + |
24 | 29 | <licenses> |
25 | 30 | <license> |
26 | 31 | <name>GNU General Public License, version 2, with the Classpath Exception</name> |
|
95 | 100 | </dependencies> |
96 | 101 |
|
97 | 102 | <build> |
| 103 | + <pluginManagement> |
| 104 | + <plugins> |
| 105 | + <plugin> |
| 106 | + <groupId>org.apache.maven.plugins</groupId> |
| 107 | + <artifactId>maven-gpg-plugin</artifactId> |
| 108 | + <version>3.2.8</version> |
| 109 | + </plugin> |
| 110 | + </plugins> |
| 111 | + </pluginManagement> |
| 112 | + |
98 | 113 | <plugins> |
99 | 114 |
|
100 | 115 | <plugin> |
|
173 | 188 | <groupId>org.apache.maven.plugins</groupId> |
174 | 189 | <artifactId>maven-source-plugin</artifactId> |
175 | 190 | <version>3.3.1</version> |
| 191 | + <executions> |
| 192 | + <execution> |
| 193 | + <id>attach-sources</id> |
| 194 | + <goals> |
| 195 | + <goal>jar-no-fork</goal> |
| 196 | + </goals> |
| 197 | + </execution> |
| 198 | + </executions> |
176 | 199 | <configuration> |
177 | 200 | <archive> |
178 | 201 | <manifest> |
|
197 | 220 | <groupId>org.apache.maven.plugins</groupId> |
198 | 221 | <artifactId>maven-javadoc-plugin</artifactId> |
199 | 222 | <version>3.11.1</version> |
| 223 | + <executions> |
| 224 | + <execution> |
| 225 | + <id>attach-javadocs</id> |
| 226 | + <goals> |
| 227 | + <goal>jar</goal> |
| 228 | + </goals> |
| 229 | + </execution> |
| 230 | + </executions> |
200 | 231 | <configuration> |
201 | 232 | <archive> |
202 | 233 | <manifest> |
|
223 | 254 | <version>3.1.1</version> |
224 | 255 | <configuration> |
225 | 256 | <mavenExecutorId>forked-path</mavenExecutorId> |
| 257 | + <tagNameFormat>${project.artifactId}-@{project.version}</tagNameFormat> |
| 258 | + <releaseProfiles>appbundler-maven-plugin-release</releaseProfiles> |
226 | 259 | </configuration> |
227 | 260 | </plugin> |
228 | 261 |
|
229 | 262 | <plugin> |
230 | 263 | <groupId>org.apache.maven.plugins</groupId> |
231 | 264 | <artifactId>maven-gpg-plugin</artifactId> |
232 | | - <version>3.2.8</version> |
233 | 265 | </plugin> |
234 | 266 |
|
235 | 267 | </plugins> |
236 | 268 |
|
237 | 269 | </build> |
238 | 270 |
|
| 271 | + <profiles> |
| 272 | + <profile> |
| 273 | + <id>appbundler-maven-plugin-release</id> |
| 274 | + <build> |
| 275 | + <plugins> |
| 276 | + <plugin> |
| 277 | + <groupId>org.apache.maven.plugins</groupId> |
| 278 | + <artifactId>maven-gpg-plugin</artifactId> |
| 279 | + <executions> |
| 280 | + <execution> |
| 281 | + <id>sign-artifacts</id> |
| 282 | + <phase>verify</phase> |
| 283 | + <goals> |
| 284 | + <goal>sign</goal> |
| 285 | + </goals> |
| 286 | + </execution> |
| 287 | + </executions> |
| 288 | + </plugin> |
| 289 | + </plugins> |
| 290 | + </build> |
| 291 | + </profile> |
| 292 | + </profiles> |
| 293 | + |
239 | 294 | <pluginRepositories> |
240 | 295 | <pluginRepository> |
241 | 296 | <id>sonatype-releases</id> |
|
0 commit comments