Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

Commit ea7b46b

Browse files
authored
Merge pull request #393 from scottkurz/v021
V021
2 parents ce73b1a + 94a4ef8 commit ea7b46b

File tree

70 files changed

+368
-228
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+368
-228
lines changed

.travis.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,7 @@ before_install:
2222
- echo "Deleting old .m2 artifacts..."
2323
- rm -rf $HOME/.m2/repository/net/wasdev
2424
- rm -rf $HOME/.m2/repository/io/openliberty
25-
- echo 'Installing ci.maven lib ....'
26-
- git clone https://github.com/OpenLiberty/ci.maven.git ./ci.maven
27-
- cd ./ci.maven
28-
- git checkout liberty-maven-3.0
29-
- mvn clean install
30-
- cd ..
25+
- rm -rf $HOME/.m2/repository/org/microshed
3126
- docker run -d -p 5000:5000 --restart=always --name registry registry:2
3227
install: true
3328
before_script:

boost-common/pom.xml

Lines changed: 74 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<groupId>org.microshed.boost</groupId>
1212
<artifactId>boost-common</artifactId>
13-
<version>0.2-SNAPSHOT</version>
13+
<version>0.2.1</version>
1414

1515
<url>https://github.com/OpenLiberty/boost</url>
1616

@@ -83,4 +83,77 @@
8383
</dependency>
8484
</dependencies>
8585

86+
87+
<build>
88+
<pluginManagement>
89+
<plugins>
90+
<plugin>
91+
<groupId>org.sonatype.plugins</groupId>
92+
<artifactId>nexus-staging-maven-plugin</artifactId>
93+
<version>1.6.8</version>
94+
<configuration>
95+
<serverId>ossrh</serverId>
96+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
97+
<autoReleaseAfterClose>false</autoReleaseAfterClose>
98+
<!-- Skip based on the maven.deploy.skip property -->
99+
<skipNexusStagingDeployMojo>${maven.deploy.skip}</skipNexusStagingDeployMojo>
100+
</configuration>
101+
</plugin>
102+
</plugins>
103+
</pluginManagement>
104+
</build>
105+
106+
<profiles>
107+
<profile>
108+
<id>oss-release</id>
109+
<build>
110+
<plugins>
111+
<plugin>
112+
<groupId>org.apache.maven.plugins</groupId>
113+
<artifactId>maven-source-plugin</artifactId>
114+
<executions>
115+
<execution>
116+
<id>attach-sources</id>
117+
<goals>
118+
<goal>jar</goal>
119+
</goals>
120+
</execution>
121+
</executions>
122+
</plugin>
123+
<plugin>
124+
<groupId>org.apache.maven.plugins</groupId>
125+
<artifactId>maven-javadoc-plugin</artifactId>
126+
<executions>
127+
<execution>
128+
<id>attach-javadocs</id>
129+
<goals>
130+
<goal>jar</goal>
131+
</goals>
132+
</execution>
133+
</executions>
134+
</plugin>
135+
<plugin>
136+
<groupId>org.apache.maven.plugins</groupId>
137+
<artifactId>maven-gpg-plugin</artifactId>
138+
<version>1.4</version>
139+
<executions>
140+
<execution>
141+
<id>sign-artifacts</id>
142+
<phase>verify</phase>
143+
<goals>
144+
<goal>sign</goal>
145+
</goals>
146+
</execution>
147+
</executions>
148+
</plugin>
149+
<plugin>
150+
<groupId>org.sonatype.plugins</groupId>
151+
<artifactId>nexus-staging-maven-plugin</artifactId>
152+
<extensions>true</extensions>
153+
</plugin>
154+
</plugins>
155+
</build>
156+
</profile>
157+
</profiles>
158+
86159
</project>

boost-common/src/main/java/org/microshed/boost/common/boosters/AbstractBoosterConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public abstract class AbstractBoosterConfig {
3030
// version string format:
3131
// <Major>.<Minor>-<boost version>-<Milestone>[-SNAPSHOT]
3232
public static final String milestone = "-M1";
33-
public static final String boostVersion = "-0.2";
33+
public static final String boostVersion = "-0.2.1";
3434
public static final String snapShot = "-SNAPSHOT";
3535
public static final String fullSnapshotString = milestone + snapShot;
3636
public static final String emptyString = "";

boost-maven/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Edit your project pom.xml and place the following plugin stanza into your build:
2323
<plugin>
2424
<groupId>org.microshed.boost</groupId>
2525
<artifactId>boost-maven-plugin</artifactId>
26-
<version>0.2</version>
26+
<version>0.2.1</version>
2727
<executions>
2828
<execution>
2929
<goals>

boost-maven/boost-boms/boost-ee7-apis-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.microshed.boost</groupId>
1414
<artifactId>boost-boms</artifactId>
15-
<version>0.2-SNAPSHOT</version>
15+
<version>0.2.1</version>
1616
</parent>
1717

1818
<groupId>org.microshed.boost.boms</groupId>

boost-maven/boost-boms/boost-ee8-apis-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.microshed.boost</groupId>
1313
<artifactId>boost-boms</artifactId>
14-
<version>0.2-SNAPSHOT</version>
14+
<version>0.2.1</version>
1515
</parent>
1616

1717
<groupId>org.microshed.boost.boms</groupId>

boost-maven/boost-boms/boost-mp14-apis-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.microshed.boost</groupId>
1313
<artifactId>boost-boms</artifactId>
14-
<version>0.2-SNAPSHOT</version>
14+
<version>0.2.1</version>
1515
</parent>
1616

1717
<groupId>org.microshed.boost.boms</groupId>

boost-maven/boost-boms/boost-mp20-apis-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.microshed.boost</groupId>
1313
<artifactId>boost-boms</artifactId>
14-
<version>0.2-SNAPSHOT</version>
14+
<version>0.2.1</version>
1515
</parent>
1616

1717
<groupId>org.microshed.boost.boms</groupId>

boost-maven/boost-boms/boost-mp21-apis-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.microshed.boost</groupId>
1313
<artifactId>boost-boms</artifactId>
14-
<version>0.2-SNAPSHOT</version>
14+
<version>0.2.1</version>
1515
</parent>
1616

1717
<groupId>org.microshed.boost.boms</groupId>

boost-maven/boost-boms/boost-mp22-apis-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.microshed.boost</groupId>
1313
<artifactId>boost-boms</artifactId>
14-
<version>0.2-SNAPSHOT</version>
14+
<version>0.2.1</version>
1515
</parent>
1616

1717
<groupId>org.microshed.boost.boms</groupId>

boost-maven/boost-boms/boost-mp30-apis-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.microshed.boost</groupId>
1313
<artifactId>boost-boms</artifactId>
14-
<version>0.2-SNAPSHOT</version>
14+
<version>0.2.1</version>
1515
</parent>
1616

1717
<groupId>org.microshed.boost.boms</groupId>

boost-maven/boost-boms/booster-ee7-bom/pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>org.microshed.boost</groupId>
1212
<artifactId>boost-boms</artifactId>
13-
<version>0.2-SNAPSHOT</version>
13+
<version>0.2.1</version>
1414
</parent>
1515

1616
<groupId>org.microshed.boost.boms</groupId>
@@ -24,14 +24,14 @@
2424
<dependency>
2525
<groupId>org.microshed.boost.boms</groupId>
2626
<artifactId>boost-ee7-apis-bom</artifactId>
27-
<version>0.2-SNAPSHOT</version>
27+
<version>0.2.1</version>
2828
<scope>import</scope>
2929
<type>pom</type>
3030
</dependency>
3131
<dependency>
3232
<groupId>org.microshed.boost.boms</groupId>
3333
<artifactId>runtimes-bom</artifactId>
34-
<version>0.2-SNAPSHOT</version>
34+
<version>0.2.1</version>
3535
<scope>import</scope>
3636
<type>pom</type>
3737
</dependency>
@@ -42,31 +42,31 @@
4242
version -->
4343
<!-- Could also use 7.0, 8.0 for EE7, 8 -->
4444
<!-- Probably will be 1.0 for initial GA -->
45-
<version>2.0-0.2-SNAPSHOT</version>
45+
<version>2.0-0.2.1</version>
4646
<scope>provided</scope>
4747
</dependency>
4848
<dependency>
4949
<groupId>org.microshed.boost.boosters</groupId>
5050
<artifactId>jdbc</artifactId>
51-
<version>0.2-SNAPSHOT</version>
51+
<version>0.2.1</version>
5252
<scope>provided</scope>
5353
</dependency>
5454
<dependency>
5555
<groupId>org.microshed.boost.boosters</groupId>
5656
<artifactId>jpa</artifactId>
57-
<version>2.1-0.2-SNAPSHOT</version>
57+
<version>2.1-0.2.1</version>
5858
<scope>provided</scope>
5959
</dependency>
6060
<dependency>
6161
<groupId>org.microshed.boost.boosters</groupId>
6262
<artifactId>cdi</artifactId>
63-
<version>1.2-0.2-SNAPSHOT</version>
63+
<version>1.2-0.2.1</version>
6464
<scope>provided</scope>
6565
</dependency>
6666
<dependency>
6767
<groupId>org.microshed.boost.boosters</groupId>
6868
<artifactId>jsonp</artifactId>
69-
<version>1.0-0.2-SNAPSHOT</version>
69+
<version>1.0-0.2.1</version>
7070
<scope>provided</scope>
7171
</dependency>
7272
</dependencies>

boost-maven/boost-boms/booster-ee8-bom/pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>org.microshed.boost</groupId>
1212
<artifactId>boost-boms</artifactId>
13-
<version>0.2-SNAPSHOT</version>
13+
<version>0.2.1</version>
1414
</parent>
1515

1616
<groupId>org.microshed.boost.boms</groupId>
@@ -24,14 +24,14 @@
2424
<dependency>
2525
<groupId>org.microshed.boost.boms</groupId>
2626
<artifactId>boost-ee8-apis-bom</artifactId>
27-
<version>0.2-SNAPSHOT</version>
27+
<version>0.2.1</version>
2828
<scope>import</scope>
2929
<type>pom</type>
3030
</dependency>
3131
<dependency>
3232
<groupId>org.microshed.boost.boms</groupId>
3333
<artifactId>runtimes-bom</artifactId>
34-
<version>0.2-SNAPSHOT</version>
34+
<version>0.2.1</version>
3535
<scope>import</scope>
3636
<type>pom</type>
3737
</dependency>
@@ -42,37 +42,37 @@
4242
version -->
4343
<!-- Could also use 7.0, 8.0 for EE7, 8 -->
4444
<!-- Probably will be 1.0 for initial GA -->
45-
<version>2.1-0.2-SNAPSHOT</version>
45+
<version>2.1-0.2.1</version>
4646
<scope>provided</scope>
4747
</dependency>
4848
<dependency>
4949
<groupId>org.microshed.boost.boosters</groupId>
5050
<artifactId>jdbc</artifactId>
51-
<version>0.2-SNAPSHOT</version>
51+
<version>0.2.1</version>
5252
<scope>provided</scope>
5353
</dependency>
5454
<dependency>
5555
<groupId>org.microshed.boost.boosters</groupId>
5656
<artifactId>jpa</artifactId>
57-
<version>2.2-0.2-SNAPSHOT</version>
57+
<version>2.2-0.2.1</version>
5858
<scope>provided</scope>
5959
</dependency>
6060
<dependency>
6161
<groupId>org.microshed.boost.boosters</groupId>
6262
<artifactId>cdi</artifactId>
63-
<version>2.0-0.2-SNAPSHOT</version>
63+
<version>2.0-0.2.1</version>
6464
<scope>provided</scope>
6565
</dependency>
6666
<dependency>
6767
<groupId>org.microshed.boost.boosters</groupId>
6868
<artifactId>jsonp</artifactId>
69-
<version>1.1-0.2-SNAPSHOT</version>
69+
<version>1.1-0.2.1</version>
7070
<scope>provided</scope>
7171
</dependency>
7272
<dependency>
7373
<groupId>org.microshed.boost.boosters</groupId>
7474
<artifactId>bean-validation</artifactId>
75-
<version>2.0-0.2-SNAPSHOT</version>
75+
<version>2.0-0.2.1</version>
7676
<scope>provided</scope>
7777
</dependency>
7878
</dependencies>

0 commit comments

Comments
 (0)