Skip to content

Commit 0ad146b

Browse files
author
Chris Wilson
committed
Release for Version 0.22
1 parent 9de3a84 commit 0ad146b

File tree

8 files changed

+41
-39
lines changed

8 files changed

+41
-39
lines changed

apps/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.sparkpost</groupId>
55
<artifactId>sparkpost</artifactId>
6-
<version>0.21</version>
6+
<version>0.22</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>apps</artifactId>

apps/sparkpost-documentor-app/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.sparkpost</groupId>
66
<artifactId>apps</artifactId>
7-
<version>0.21</version>
7+
<version>0.22</version>
88
</parent>
99
<artifactId>sparkpost-documentor-app</artifactId>
1010
<name>Generates Markdown of Protocol</name>

apps/sparkpost-javamail-app/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.sparkpost</groupId>
88
<artifactId>apps</artifactId>
9-
<version>0.21</version>
9+
<version>0.22</version>
1010
</parent>
1111
<groupId>com.sparkpost.sample</groupId>
1212
<artifactId>sparkpost-javamail-app</artifactId>

apps/sparkpost-samples-app/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.sparkpost</groupId>
66
<artifactId>apps</artifactId>
7-
<version>0.21</version>
7+
<version>0.22</version>
88
</parent>
99
<artifactId>sparkpost-samples-app</artifactId>
1010
<name>Example use SparkPost library</name>

libs/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.sparkpost</groupId>
66
<artifactId>sparkpost</artifactId>
7-
<version>0.21</version>
7+
<version>0.22</version>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<artifactId>libs</artifactId>

libs/sparkpost-lib/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.sparkpost</groupId>
66
<artifactId>libs</artifactId>
7-
<version>0.21</version>
7+
<version>0.22</version>
88
</parent>
99
<!-- <version>0.10</version> -->
1010
<artifactId>sparkpost-lib</artifactId>

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.sparkpost</groupId>
66
<artifactId>sparkpost</artifactId>
7-
<version>0.21</version>
7+
<version>0.22</version>
88
<packaging>pom</packaging>
99
<name>*** SparkPost Java Code ***</name>
1010
<description>SparkPost client library for Java https://www.sparkpost.com/</description>
@@ -282,7 +282,7 @@
282282
<dependency>
283283
<groupId>com.sparkpost</groupId>
284284
<artifactId>sparkpost-lib</artifactId>
285-
<version>0.21</version>
285+
<version>0.22</version>
286286
</dependency>
287287

288288
</dependencies>

tools/bin/collectJars.sh

+33-31
Original file line numberDiff line numberDiff line change
@@ -3,41 +3,43 @@
33
# Do everything relative to the tools/bin directory
44
cd "$(dirname $0)"
55

6+
VERSION=0.22
7+
68
cd ../..
79

810
mkdir target/files
911

10-
cp ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-0.8-javadoc.jar ./target/files/
11-
cp ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-0.8-javadoc.jar.asc ./target/files/
12-
cp ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-0.8-sources.jar ./target/files/
13-
cp ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-0.8-sources.jar.asc ./target/files/
14-
cp ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-0.8.jar ./target/files/
15-
cp ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-0.8.jar.asc ./target/files/
16-
cp ./apps/sparkpost-samples-app/target/sparkpost-samples-app-0.8-javadoc.jar ./target/files/
17-
cp ./apps/sparkpost-samples-app/target/sparkpost-samples-app-0.8-javadoc.jar.asc ./target/files/
18-
cp ./apps/sparkpost-samples-app/target/sparkpost-samples-app-0.8-sources.jar ./target/files/
19-
cp ./apps/sparkpost-samples-app/target/sparkpost-samples-app-0.8-sources.jar.asc ./target/files/
20-
cp ./apps/sparkpost-samples-app/target/sparkpost-samples-app-0.8.jar ./target/files/
21-
cp ./apps/sparkpost-samples-app/target/sparkpost-samples-app-0.8.jar.asc ./target/files/
22-
cp ./libs/sparkpost-lib/target/sparkpost-lib-0.8-javadoc.jar ./target/files/
23-
cp ./libs/sparkpost-lib/target/sparkpost-lib-0.8-javadoc.jar.asc ./target/files/
24-
cp ./libs/sparkpost-lib/target/sparkpost-lib-0.8-sources.jar ./target/files/
25-
cp ./libs/sparkpost-lib/target/sparkpost-lib-0.8-sources.jar.asc ./target/files/
26-
cp ./libs/sparkpost-lib/target/sparkpost-lib-0.8.jar ./target/files/
27-
cp ./libs/sparkpost-lib/target/sparkpost-lib-0.8.jar.asc ./target/files/
28-
29-
cp ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-0.8.pom ./target/files/
30-
cp ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-0.8.pom.asc ./target/files/
31-
cp ./apps/sparkpost-samples-app/target/sparkpost-samples-app-0.8.pom ./target/files/
32-
cp ./apps/sparkpost-samples-app/target/sparkpost-samples-app-0.8.pom.asc ./target/files/
33-
cp ./apps/target/apps-0.8.pom ./target/files/
34-
cp ./apps/target/apps-0.8.pom.asc ./target/files/
35-
cp ./libs/sparkpost-lib/target/sparkpost-lib-0.8.pom ./target/files/
36-
cp ./libs/sparkpost-lib/target/sparkpost-lib-0.8.pom.asc ./target/files/
37-
cp ./libs/target/libs-0.8.pom ./target/files/
38-
cp ./libs/target/libs-0.8.pom.asc ./target/files/
39-
cp ./target/sparkpost-0.8.pom ./target/files/
40-
cp ./target/sparkpost-0.8.pom.asc ./target/files/
12+
cp ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-$VERSION-javadoc.jar ./target/files/
13+
cp ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-$VERSION-javadoc.jar.asc ./target/files/
14+
cp ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-$VERSION-sources.jar ./target/files/
15+
cp ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-$VERSION-sources.jar.asc ./target/files/
16+
cp ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-$VERSION.jar ./target/files/
17+
cp ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-$VERSION.jar.asc ./target/files/
18+
cp ./apps/sparkpost-samples-app/target/sparkpost-samples-app-$VERSION-javadoc.jar ./target/files/
19+
cp ./apps/sparkpost-samples-app/target/sparkpost-samples-app-$VERSION-javadoc.jar.asc ./target/files/
20+
cp ./apps/sparkpost-samples-app/target/sparkpost-samples-app-$VERSION-sources.jar ./target/files/
21+
cp ./apps/sparkpost-samples-app/target/sparkpost-samples-app-$VERSION-sources.jar.asc ./target/files/
22+
cp ./apps/sparkpost-samples-app/target/sparkpost-samples-app-$VERSION.jar ./target/files/
23+
cp ./apps/sparkpost-samples-app/target/sparkpost-samples-app-$VERSION.jar.asc ./target/files/
24+
cp ./libs/sparkpost-lib/target/sparkpost-lib-$VERSION-javadoc.jar ./target/files/
25+
cp ./libs/sparkpost-lib/target/sparkpost-lib-$VERSION-javadoc.jar.asc ./target/files/
26+
cp ./libs/sparkpost-lib/target/sparkpost-lib-$VERSION-sources.jar ./target/files/
27+
cp ./libs/sparkpost-lib/target/sparkpost-lib-$VERSION-sources.jar.asc ./target/files/
28+
cp ./libs/sparkpost-lib/target/sparkpost-lib-$VERSION.jar ./target/files/
29+
cp ./libs/sparkpost-lib/target/sparkpost-lib-$VERSION.jar.asc ./target/files/
30+
31+
cp ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-$VERSION.pom ./target/files/
32+
cp ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-$VERSION.pom.asc ./target/files/
33+
cp ./apps/sparkpost-samples-app/target/sparkpost-samples-app-$VERSION.pom ./target/files/
34+
cp ./apps/sparkpost-samples-app/target/sparkpost-samples-app-$VERSION.pom.asc ./target/files/
35+
cp ./apps/target/apps-$VERSION.pom ./target/files/
36+
cp ./apps/target/apps-$VERSION.pom.asc ./target/files/
37+
cp ./libs/sparkpost-lib/target/sparkpost-lib-$VERSION.pom ./target/files/
38+
cp ./libs/sparkpost-lib/target/sparkpost-lib-$VERSION.pom.asc ./target/files/
39+
cp ./libs/target/libs-$VERSION.pom ./target/files/
40+
cp ./libs/target/libs-$VERSION.pom.asc ./target/files/
41+
cp ./target/sparkpost-$VERSION.pom ./target/files/
42+
cp ./target/sparkpost-$VERSION.pom.asc ./target/files/
4143

4244

4345

0 commit comments

Comments
 (0)