Skip to content

Commit 3e68530

Browse files
committed
[maven-release-plugin] prepare release v1.0.2
1 parent c77fd34 commit 3e68530

File tree

1 file changed

+1
-201
lines changed

1 file changed

+1
-201
lines changed

pom.xml

Lines changed: 1 addition & 201 deletions
Original file line numberDiff line numberDiff line change
@@ -1,201 +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-
<modelVersion>4.0.0</modelVersion>
3-
4-
<groupId>io.github.fvarrui</groupId>
5-
<artifactId>javapackager</artifactId>
6-
<version>1.0.2-SNAPSHOT</version>
7-
<packaging>maven-plugin</packaging>
8-
9-
<name>JavaPackager Maven Plugin</name>
10-
<description>Maven Plugin which provides an easy way to package Java applications as native Windows, Mac OS X, or GNU/Linux executables and create installers for them.</description>
11-
<url>https://github.com/fvarrui/JavaPackager</url>
12-
13-
<properties>
14-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15-
<maven.compiler.source>1.8</maven.compiler.source>
16-
<maven.compiler.target>1.8</maven.compiler.target>
17-
</properties>
18-
19-
<licenses>
20-
<license>
21-
<name>GPL-v3.0</name>
22-
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
23-
</license>
24-
</licenses>
25-
26-
<developers>
27-
<developer>
28-
<id>fvarrui</id>
29-
<name>Francisco Vargas Ruiz</name>
30-
<url>https://github.com/fvarrui</url>
31-
</developer>
32-
</developers>
33-
34-
<scm>
35-
<connection>scm:git:git://github.com/fvarrui/JavaPackager.git</connection>
36-
<developerConnection>scm:git:git@github.com:fvarrui/fvarrui.git</developerConnection>
37-
<url>https://github.com/fvarrui/JavaPackager</url>
38-
<tag>v1.0.2</tag>
39-
</scm>
40-
41-
<dependencies>
42-
<dependency>
43-
<groupId>org.apache.maven</groupId>
44-
<artifactId>maven-plugin-api</artifactId>
45-
<version>3.6.0</version>
46-
</dependency>
47-
<dependency>
48-
<groupId>org.apache.maven.plugin-tools</groupId>
49-
<artifactId>maven-plugin-annotations</artifactId>
50-
<version>3.6.0</version>
51-
<scope>provided</scope>
52-
</dependency>
53-
<dependency>
54-
<groupId>org.codehaus.plexus</groupId>
55-
<artifactId>plexus-utils</artifactId>
56-
<version>3.1.1</version>
57-
</dependency>
58-
<dependency>
59-
<groupId>junit</groupId>
60-
<artifactId>junit</artifactId>
61-
<version>4.12</version>
62-
<scope>test</scope>
63-
</dependency>
64-
<dependency>
65-
<groupId>org.twdata.maven</groupId>
66-
<artifactId>mojo-executor</artifactId>
67-
<version>2.3.0</version>
68-
</dependency>
69-
<dependency>
70-
<groupId>org.apache.commons</groupId>
71-
<artifactId>commons-lang3</artifactId>
72-
<version>3.9</version>
73-
</dependency>
74-
<dependency>
75-
<groupId>commons-io</groupId>
76-
<artifactId>commons-io</artifactId>
77-
<version>2.6</version>
78-
</dependency>
79-
<dependency>
80-
<groupId>org.apache.commons</groupId>
81-
<artifactId>commons-collections4</artifactId>
82-
<version>4.1</version>
83-
</dependency>
84-
<dependency>
85-
<groupId>org.apache.velocity</groupId>
86-
<artifactId>velocity-engine-core</artifactId>
87-
<version>2.0</version>
88-
</dependency>
89-
</dependencies>
90-
91-
<build>
92-
<plugins>
93-
94-
<plugin>
95-
<groupId>org.apache.maven.plugins</groupId>
96-
<artifactId>maven-plugin-plugin</artifactId>
97-
<version>3.6.0</version>
98-
<executions>
99-
<execution>
100-
<id>help-goal</id>
101-
<goals>
102-
<goal>help</goal>
103-
</goals>
104-
<configuration>
105-
<goalPrefix>javapackager</goalPrefix>
106-
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
107-
</configuration>
108-
</execution>
109-
</executions>
110-
</plugin>
111-
112-
<plugin>
113-
<artifactId>maven-deploy-plugin</artifactId>
114-
<version>2.8.2</version>
115-
<executions>
116-
<execution>
117-
<id>default-deploy</id>
118-
<phase>deploy</phase>
119-
<goals>
120-
<goal>deploy</goal>
121-
</goals>
122-
</execution>
123-
</executions>
124-
</plugin>
125-
126-
<plugin>
127-
<groupId>org.apache.maven.plugins</groupId>
128-
<artifactId>maven-release-plugin</artifactId>
129-
<configuration>
130-
<tagNameFormat>v@{project.version}</tagNameFormat>
131-
<localCheckout>true</localCheckout>
132-
<pushChanges>false</pushChanges>
133-
<mavenExecutorId>forked-path</mavenExecutorId>
134-
<arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments>
135-
</configuration>
136-
<dependencies>
137-
<dependency>
138-
<groupId>org.apache.maven.scm</groupId>
139-
<artifactId>maven-scm-provider-gitexe</artifactId>
140-
<version>1.9.5</version>
141-
</dependency>
142-
</dependencies>
143-
</plugin>
144-
145-
<plugin>
146-
<groupId>org.sonatype.plugins</groupId>
147-
<artifactId>nexus-staging-maven-plugin</artifactId>
148-
<version>1.6.7</version>
149-
<extensions>true</extensions>
150-
<configuration>
151-
<serverId>ossrh</serverId>
152-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
153-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
154-
</configuration>
155-
</plugin>
156-
157-
</plugins>
158-
</build>
159-
160-
<profiles>
161-
<profile>
162-
<id>release-sign-artifacts</id>
163-
<activation>
164-
<property>
165-
<name>performRelease</name>
166-
<value>true</value>
167-
</property>
168-
</activation>
169-
<build>
170-
<plugins>
171-
<plugin>
172-
<groupId>org.apache.maven.plugins</groupId>
173-
<artifactId>maven-gpg-plugin</artifactId>
174-
<version>1.6</version>
175-
<executions>
176-
<execution>
177-
<id>sign-artifacts</id>
178-
<phase>verify</phase>
179-
<goals>
180-
<goal>sign</goal>
181-
</goals>
182-
</execution>
183-
</executions>
184-
</plugin>
185-
</plugins>
186-
</build>
187-
</profile>
188-
</profiles>
189-
190-
<distributionManagement>
191-
<snapshotRepository>
192-
<id>ossrh</id>
193-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
194-
</snapshotRepository>
195-
<repository>
196-
<id>ossrh</id>
197-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
198-
</repository>
199-
</distributionManagement>
200-
201-
</project>
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"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.fvarrui</groupId> <artifactId>javapackager</artifactId> <version>1.0.2</version> <packaging>maven-plugin</packaging> <name>JavaPackager Maven Plugin</name> <description>Maven Plugin which provides an easy way to package Java applications as native Windows, Mac OS X, or GNU/Linux executables and create installers for them.</description> <url>https://github.com/fvarrui/JavaPackager</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <licenses> <license> <name>GPL-v3.0</name> <url>http://www.gnu.org/licenses/gpl-3.0.txt</url> </license> </licenses> <developers> <developer> <id>fvarrui</id> <name>Francisco Vargas Ruiz</name> <url>https://github.com/fvarrui</url> </developer> </developers> <scm> <connection>scm:git:git://github.com/fvarrui/JavaPackager.git</connection> <developerConnection>scm:git:git@github.com:fvarrui/fvarrui.git</developerConnection> <url>https://github.com/fvarrui/JavaPackager</url> <tag>v1.0.2</tag> </scm> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.6.0</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.6.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>3.1.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.twdata.maven</groupId> <artifactId>mojo-executor</artifactId> <version>2.3.0</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.9</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.6</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>4.1</version> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity-engine-core</artifactId> <version>2.0</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <id>help-goal</id> <goals> <goal>help</goal> </goals> <configuration> <goalPrefix>javapackager</goalPrefix> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> <executions> <execution> <id>default-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> <localCheckout>true</localCheckout> <pushChanges>false</pushChanges> <mavenExecutorId>forked-path</mavenExecutorId> <arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>1.9.5</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement></project>

0 commit comments

Comments
 (0)