Skip to content

Commit 99f43a0

Browse files
committed
Release v0.5
1 parent 626431b commit 99f43a0

File tree

8 files changed

+124
-8
lines changed

8 files changed

+124
-8
lines changed

api/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>be.atbash.mp.rest-client</groupId>
2525
<artifactId>rest-client-parent</artifactId>
26-
<version>0.5-SNAPSHOT</version>
26+
<version>0.5</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

commands.txt

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# local development
2+
3+
mvn clean install
4+
5+
6+
# Update license header
7+
8+
mvn license:format
9+
10+
11+
12+
mvn versions:set -DnewVersion=0.5 -DgenerateBackupPoms=false

example/client-se/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>be.atbash.mp.rest-client</groupId>
2525
<artifactId>atbash-rest-client-example-parent</artifactId>
26-
<version>0.5-SNAPSHOT</version>
26+
<version>0.5</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

example/client/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>be.atbash.mp.rest-client</groupId>
2525
<artifactId>atbash-rest-client-example-parent</artifactId>
26-
<version>0.5-SNAPSHOT</version>
26+
<version>0.5</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

@@ -52,7 +52,7 @@
5252
<dependency>
5353
<groupId>be.atbash.config</groupId>
5454
<artifactId>geronimo-config</artifactId>
55-
<version>0.9.1</version>
55+
<version>0.9.1.1</version>
5656
</dependency>
5757

5858
<dependency>

example/pom.xml

+25-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>be.atbash.mp.rest-client</groupId>
2525
<artifactId>rest-client-parent</artifactId>
26-
<version>0.5-SNAPSHOT</version>
26+
<version>0.5</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

@@ -41,4 +41,28 @@
4141
<module>client</module>
4242
<module>client-se</module>
4343
</modules>
44+
45+
<build>
46+
<plugins>
47+
<!-- don't need to deploy the examples to nexus. -->
48+
<plugin>
49+
<groupId>org.apache.maven.plugins</groupId>
50+
<artifactId>maven-deploy-plugin</artifactId>
51+
<version>2.4</version>
52+
<configuration>
53+
<skip>true</skip>
54+
</configuration>
55+
</plugin>
56+
<plugin>
57+
<groupId>org.apache.maven.plugins</groupId>
58+
<artifactId>maven-install-plugin</artifactId>
59+
<version>2.5.2</version>
60+
<configuration>
61+
<skip>true</skip>
62+
</configuration>
63+
</plugin>
64+
65+
</plugins>
66+
</build>
67+
4468
</project>

example/server/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>be.atbash.mp.rest-client</groupId>
2525
<artifactId>atbash-rest-client-example-parent</artifactId>
26-
<version>0.5-SNAPSHOT</version>
26+
<version>0.5</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

impl/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>be.atbash.mp.rest-client</groupId>
2525
<artifactId>rest-client-parent</artifactId>
26-
<version>0.5-SNAPSHOT</version>
26+
<version>0.5</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

pom.xml

+81-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
<groupId>be.atbash.mp.rest-client</groupId>
2525
<artifactId>rest-client-parent</artifactId>
26-
<version>0.5-SNAPSHOT</version>
26+
<version>0.5</version>
2727
<packaging>pom</packaging>
2828

2929
<properties>
@@ -39,6 +39,12 @@
3939
<description>Atbash Rest Client parent</description>
4040
<url>Atbash Rest Client parent</url>
4141

42+
<scm>
43+
<connection>scm:git:git://github.com/atbashEE/atbash-rest-client.git</connection>
44+
<developerConnection>scm:git:ssh://github.com:atbashEE/atbash-rest-client.git</developerConnection>
45+
<url>http://github.com/atbashEE/atbash-rest-client/tree/master</url>
46+
</scm>
47+
4248
<developers>
4349
<developer>
4450
<id>rubus</id>
@@ -145,4 +151,78 @@
145151

146152
</build>
147153

154+
<profiles>
155+
<profile>
156+
<id>release</id>
157+
<distributionManagement>
158+
<snapshotRepository>
159+
<id>ossrh</id>
160+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
161+
</snapshotRepository>
162+
<repository>
163+
<id>ossrh</id>
164+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
165+
</repository>
166+
</distributionManagement>
167+
<build>
168+
<plugins>
169+
<plugin>
170+
<groupId>org.apache.maven.plugins</groupId>
171+
<artifactId>maven-source-plugin</artifactId>
172+
<version>2.4</version>
173+
<executions>
174+
<execution>
175+
<id>attach-sources</id>
176+
<goals>
177+
<goal>jar-no-fork</goal>
178+
</goals>
179+
</execution>
180+
</executions>
181+
</plugin>
182+
183+
<!-- Configure the jar with the javadoc (or rather, convince Maven that
184+
we want javadoc at all) -->
185+
<plugin>
186+
<groupId>org.apache.maven.plugins</groupId>
187+
<artifactId>maven-javadoc-plugin</artifactId>
188+
<version>2.10.3</version>
189+
<configuration>
190+
<javadocVersion>1.8</javadocVersion>
191+
<notimestamp>true</notimestamp>
192+
<!--splitindex>true</splitindex-->
193+
<doctitle>${project.name} ${project.version}</doctitle>
194+
<additionalparam>-Xdoclint:none</additionalparam>
195+
<bottom>
196+
<![CDATA[]]>
197+
</bottom>
198+
</configuration>
199+
<executions>
200+
<execution>
201+
<id>attach-javadocs</id>
202+
<goals>
203+
<goal>jar</goal>
204+
</goals>
205+
</execution>
206+
</executions>
207+
</plugin>
208+
<plugin>
209+
<groupId>org.apache.maven.plugins</groupId>
210+
<artifactId>maven-gpg-plugin</artifactId>
211+
<version>1.6</version>
212+
<executions>
213+
<execution>
214+
<id>sign-artifacts</id>
215+
<phase>verify</phase>
216+
<goals>
217+
<goal>sign</goal>
218+
</goals>
219+
</execution>
220+
</executions>
221+
</plugin>
222+
223+
</plugins>
224+
</build>
225+
226+
</profile>
227+
</profiles>
148228
</project>

0 commit comments

Comments
 (0)