Skip to content

Commit e55fc54

Browse files
committed
Update for release
1 parent 2ce022c commit e55fc54

File tree

4 files changed

+22
-6
lines changed

4 files changed

+22
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ install:
1414
- rm ~/.m2/settings.xml
1515
- if [ $TRAVIS_PULL_REQUEST = false ] && [ $TRAVIS_BRANCH = master ]; then GOAL=deploy; else GOAL=install; fi
1616

17-
script: mvn -q -U -T 2 -Pcompatibility,snapshots,javadoc $GOAL jacoco:report
17+
script: mvn -q -U -T 2 -Pbuild-number,compatibility,bintray,snapshots,javadoc $GOAL jacoco:report
1818

1919
after_success: mvn -q coveralls:report -DrepoToken=$COVERALLS_TOKEN

batch/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.seedstack.addons.spring</groupId>
1616
<artifactId>spring-bridge</artifactId>
17-
<version>2.1.0-M1-SNAPSHOT</version>
17+
<version>2.1.0-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>spring-bridge-batch</artifactId>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.seedstack.addons.spring</groupId>
1515
<artifactId>spring-bridge</artifactId>
16-
<version>2.1.0-M1-SNAPSHOT</version>
16+
<version>2.1.0-SNAPSHOT</version>
1717
</parent>
1818

1919
<artifactId>spring-bridge-core</artifactId>

pom.xml

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
<parent>
1414
<groupId>org.seedstack.poms</groupId>
1515
<artifactId>parent-internal</artifactId>
16-
<version>2.1.0-SNAPSHOT</version>
16+
<version>2.1.0</version>
1717
</parent>
1818

1919
<groupId>org.seedstack.addons.spring</groupId>
2020
<artifactId>spring-bridge</artifactId>
21-
<version>2.1.0-M1-SNAPSHOT</version>
21+
<version>2.1.0-SNAPSHOT</version>
2222
<packaging>pom</packaging>
2323

2424
<properties>
25-
<seed.version>2.1.0-M1-SNAPSHOT</seed.version>
25+
<seed.version>2.1.0</seed.version>
2626
<spring.version>4.0.5.RELEASE</spring.version>
2727
<spring-batch.version>3.0.5.RELEASE</spring-batch.version>
2828

@@ -109,5 +109,21 @@
109109
</repository>
110110
</repositories>
111111
</profile>
112+
<profile>
113+
<id>bintray</id>
114+
<repositories>
115+
<repository>
116+
<snapshots>
117+
<enabled>false</enabled>
118+
</snapshots>
119+
<releases>
120+
<enabled>true</enabled>
121+
</releases>
122+
<id>bintray-seedstack-jars</id>
123+
<name>bintray</name>
124+
<url>http://dl.bintray.com/seedstack/jars</url>
125+
</repository>
126+
</repositories>
127+
</profile>
112128
</profiles>
113129
</project>

0 commit comments

Comments
 (0)