Skip to content

Commit

Permalink
Update for release
Browse files Browse the repository at this point in the history
  • Loading branch information
adrienlauer committed Nov 15, 2015
1 parent 2b1a1c0 commit 05e95b4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ install:
- rm ~/.m2/settings.xml
- if [ $TRAVIS_PULL_REQUEST = false ] && [ $TRAVIS_BRANCH = master ]; then GOAL=deploy; else GOAL=install; fi

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

after_success: mvn -q coveralls:report -DrepoToken=$COVERALLS_TOKEN
22 changes: 19 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
<parent>
<groupId>org.seedstack.poms</groupId>
<artifactId>parent-internal</artifactId>
<version>2.1.0-SNAPSHOT</version>
<version>2.1.0</version>
</parent>

<groupId>org.seedstack.addons.redis</groupId>
<artifactId>redis</artifactId>
<version>1.0.0-M1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>

<properties>
<seed.version>2.1.0-M1-SNAPSHOT</seed.version>
<seed.version>2.1.0</seed.version>
<jedis.version>2.7.3</jedis.version>

<compatibility.skip>true</compatibility.skip>
Expand Down Expand Up @@ -129,5 +129,21 @@
</repository>
</repositories>
</profile>
<profile>
<id>bintray</id>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<id>bintray-seedstack-jars</id>
<name>bintray</name>
<url>http://dl.bintray.com/seedstack/jars</url>
</repository>
</repositories>
</profile>
</profiles>
</project>

0 comments on commit 05e95b4

Please sign in to comment.