Skip to content

Commit 6912fdf

Browse files
committed
updates release version to 0.10
1 parent b6d0489 commit 6912fdf

File tree

11 files changed

+145
-9
lines changed

11 files changed

+145
-9
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ buildNumber.properties
4040
.metadata
4141
.gradle
4242
bin/
43+
!tools/bin
4344
tmp/
4445
*.tmp
4546
*.bak

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The SparkPost Java Library is available in this [Maven Repository](http://maven.
1717
<dependency>
1818
<groupId>com.sparkpost</groupId>
1919
<artifactId>client-server-protocol-lib</artifactId>
20-
<version>0.9</version>
20+
<version>0.10</version>
2121
</dependency>
2222
```
2323

apps/pom.xml

Lines changed: 1 addition & 1 deletion
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.9</version>
7+
<version>0.10</version>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<artifactId>apps</artifactId>

apps/sparkpost-documentor-app/pom.xml

Lines changed: 1 addition & 1 deletion
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.9</version>
7+
<version>0.10</version>
88
</parent>
99
<artifactId>sparkpost-documentor-app</artifactId>
1010
<name>Generates Markdown of Protocol</name>

apps/sparkpost-samples-app/pom.xml

Lines changed: 1 addition & 1 deletion
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.9</version>
7+
<version>0.10</version>
88
</parent>
99
<artifactId>sparkpost-samples-app</artifactId>
1010
<name>Example use SparkPost library</name>

libs/pom.xml

Lines changed: 1 addition & 1 deletion
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.9</version>
7+
<version>0.10</version>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<artifactId>libs</artifactId>

libs/sparkpost-lib/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<parent>
55
<groupId>com.sparkpost</groupId>
66
<artifactId>libs</artifactId>
7-
<version>0.9</version>
7+
<version>0.10</version>
88
</parent>
9-
<!-- <version>0.9</version> -->
9+
<!-- <version>0.10</version> -->
1010
<artifactId>sparkpost-lib</artifactId>
1111
<name>SparkPost Library</name>
1212
<url>/libs/sparkpost-lib/</url>

pom.xml

Lines changed: 2 additions & 2 deletions
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.9</version>
7+
<version>0.10</version>
88
<packaging>pom</packaging>
99
<name>*** SparkPost Java Code ***</name>
1010
<description>SparkPost client library for Java https://www.sparkpost.com/</description>
@@ -258,7 +258,7 @@
258258
<dependency>
259259
<groupId>com.sparkpost</groupId>
260260
<artifactId>sparkpost-lib</artifactId>
261-
<version>0.9</version>
261+
<version>0.10</version>
262262
</dependency>
263263

264264
</dependencies>

tools/bin/buildBundles.sh

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#!/bin/bash
2+
3+
BIN_DIR=`dirname "$0"`
4+
cd $BIN_DIR/../..
5+
6+
BASE_DIR=`pwd`
7+
8+
echo "Base Dir: " $BASE_DIR
9+
10+
# Bundle SparkPost Lib
11+
12+
cd $BASE_DIR/libs/sparkpost-lib/target
13+
gpg --verify sparkpost-*.pom.asc sparkpost-*.pom
14+
15+
jar -cvf bundle.jar sparkpost-lib-*-javadoc.jar sparkpost-lib-*-javadoc.jar.asc sparkpost-lib-*-sources.jar sparkpost-lib-*-sources.jar.asc sparkpost-lib-*.jar sparkpost-lib-*.jar.asc sparkpost-lib-*.pom sparkpost-lib-*.pom.asc
16+
17+
# Bundle base libs
18+
cd $BASE_DIR/libs/target
19+
jar -cvf bundle.jar *
20+
21+
22+
# Bundle target
23+
cd $BASE_DIR/target
24+
jar -cvf bundle.jar *
25+
26+

tools/bin/checkSignatures.sh

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
#!/bin/bash
2+
3+
# Do everything relative to the tools/bin directory
4+
cd "$(dirname $0)"
5+
6+
cd ../..
7+
8+
echo "checking parent poms"
9+
10+
echo ""
11+
echo "./target/sparkpost-*.pom"
12+
gpg --verify ./target/sparkpost-*.pom.asc ./target/sparkpost-*.pom
13+
14+
echo ""
15+
echo "./target/libs-*.pom"
16+
gpg --verify ./libs/target/libs-*.pom.asc ./libs/target/libs-*.pom
17+
18+
echo ""
19+
echo "checking build artifacts"
20+
21+
echo ""
22+
echo "./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-*-javadoc.jar"
23+
gpg --verify ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-*-javadoc.jar.asc ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-*-javadoc.jar
24+
25+
echo ""
26+
echo "./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-*-sources.jar"
27+
gpg --verify ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-*-sources.jar.asc ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-*-sources.jar
28+
29+
echo ""
30+
echo "./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-*.jar"
31+
gpg --verify ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-*.jar.asc ./apps/sparkpost-documentor-app/target/sparkpost-documentor-app-*.jar
32+
33+
echo ""
34+
echo "./apps/sparkpost-samples-app/target/sparkpost-samples-app-*-javadoc.jar"
35+
gpg --verify ./apps/sparkpost-samples-app/target/sparkpost-samples-app-*-javadoc.jar.asc ./apps/sparkpost-samples-app/target/sparkpost-samples-app-*-javadoc.jar
36+
37+
echo ""
38+
echo "./apps/sparkpost-samples-app/target/sparkpost-samples-app-*-sources.jar"
39+
gpg --verify ./apps/sparkpost-samples-app/target/sparkpost-samples-app-*-sources.jar.asc ./apps/sparkpost-samples-app/target/sparkpost-samples-app-*-sources.jar
40+
41+
echo ""
42+
echo "./apps/sparkpost-samples-app/target/sparkpost-samples-app-*.jar"
43+
gpg --verify ./apps/sparkpost-samples-app/target/sparkpost-samples-app-*.jar.asc ./apps/sparkpost-samples-app/target/sparkpost-samples-app-*.jar
44+
45+
echo ""
46+
echo "./libs/sparkpost-lib/target/sparkpost-lib-*-javadoc.jar"
47+
gpg --verify ./libs/sparkpost-lib/target/sparkpost-lib-*-javadoc.jar.asc ./libs/sparkpost-lib/target/sparkpost-lib-*-javadoc.jar
48+
49+
echo ""
50+
echo "./libs/sparkpost-lib/target/sparkpost-lib-*-sources.jar"
51+
gpg --verify ./libs/sparkpost-lib/target/sparkpost-lib-*-sources.jar.asc ./libs/sparkpost-lib/target/sparkpost-lib-*-sources.jar
52+
53+
echo ""
54+
echo "./libs/sparkpost-lib/target/sparkpost-lib-*.jar"
55+
gpg --verify ./libs/sparkpost-lib/target/sparkpost-lib-*.jar.asc ./libs/sparkpost-lib/target/sparkpost-lib-*.jar
56+
57+
echo ""
58+
echo ""
59+
echo "Done"
60+
61+
62+

0 commit comments

Comments
 (0)