Skip to content

Commit

Permalink
try to fix deployment for arbitrary tags, again
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnoe committed Feb 8, 2016
1 parent fa4fe6a commit 38c4660
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jdk:
- openjdk7
- oraclejdk8
before_deploy:
- mv target/fact-tools-*.jar target/fact-tools-$TRAVIS_BRANCH.jar
- mvn -DfinalName=fact-tools-$TRAVIS_BRANCH package
deploy:
provider: releases
api_key:
Expand All @@ -14,6 +14,8 @@ deploy:
on:
tags: true
repo: fact-project/fact-tools
java: oraclejdk8
notifications:
slack:
secure: IwBFEZoQ5bYquYbOfsVE/EQ6bc6CemwDeCQw1Ok5AryUuj1RvYHBrV1o00kPDi6T2PFuc+jWUTg8VTCTzXUUgJOrjhiBuvYAwEOaDRtCi9uhDHsrPUBLwjB80k2rm90A8RgRd3DDZjxfdz4hHdlsgjFVP/zMCTCvB27vnRMONpejuWQXhTuFhdQqkyzje8s2lGdbtJ7cu7zHuqEn3w5b5J7AbDpwYnbmIZxElgtuJBw3yRkfF5+dmnEIHUKZp+NtffYjW0NEhJQZojP2ea4Qv4qiMv4mwEU3L7ahHNhzz4P9tv3mrjaDHOGcZOk4UuJDW8iNaShvO4RBlWbwWhasahnpg06Oq7YqYzkD85oc+qG5ByKvM1eRn7OyYM9AXuxu1BVncnyz1WKJiuFFTLCnYFD393X/tyjC4iY8MbVhx9NcfhCxFaD6kv6bkAj1ilxs5oMVcthDuLsT/UFQBHM/zMe0zo9AxbWvpyuYToGR5y0UmVCupuQ96jzW9nShmPJtgMuz5jMqki9F6aeBd9e2BGCInBtRBQ1dFpvrqR70Jx+6aiQm//zgVVkfReg0pvJrpYchaG3UIcbI0Kor8+wslmlOY1v0XkJgx1A0BN9m/hRewfPRfn4YR8y7xHHpQRY7AY3j1Ezp8CPRdJ0BzrR2yymAtL8X2bDJZkg64O4BnmM=

5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<streams.version>0.9.23</streams.version>
<binary.name>fact-tools-${project.version}</binary.name>
<skipTests>false</skipTests>
<finalName>fact-tools-${project.version}</finalName>
</properties>


Expand Down Expand Up @@ -239,7 +240,7 @@
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<configuration>
<finalName>fact-tools-${project.version}</finalName>
<finalName>${finalName}</finalName>
<!--
<attach>false</attach>
-->
Expand Down Expand Up @@ -273,7 +274,7 @@
</executions>
<configuration>
<!--<minimizeJar>true</minimizeJar>-->
<finalName>fact-tools-${project.version}</finalName>
<finalName>${finalName}</finalName>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<manifestEntries>
Expand Down

0 comments on commit 38c4660

Please sign in to comment.