Skip to content

Commit

Permalink
Retrying release 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
devgianlu committed Dec 6, 2018
1 parent 7fca94e commit 47b64bd
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 10 deletions.
18 changes: 9 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ deploy:
api_key:
secure: qD8WixE5dpxKyiDEEPdrWVchBxMw7NKLrSNeUEJIb+p9Wq/yJ4cf3DScXYJToFJ/SB5JPCjjyj7rudOJ2wUMydJ01UGVJ+vbR/dTIXjtQxRJ7bDuqq4AGeUjZvDeBhigrA6hxWsqkzbRZzPEMcsWPa77Bs5drwiSJVixS2kLWgH3cKzLHZaqRQnlOeX20MHcPLFr/K0buFBg+qKUazx/z56qJuT0hh6+DYbXhdB9qK3bcGgUPE7rEaq6qfK0o3bZibCxtxFpMQR9qNXHnxfV5hUnq/k/YHQUNwFVo8kA3mSniYd9LxycLQ5nlwcbA2EgjKoJmQ3GYg1VLNsXVbWbw4aAl54h/7k7JzlCfpmM4DDrN62hGYzcoU+dD1WkAQob7a20pmmUmZI5LYUOJPIrpS98/DjDQdnkGeU/waCswSmjIYCqWhX2n0F1yYmC8X9nD2tRUCSyAAT3jFotLyRCsbjy1zg5xBFDw/Lgvd2ixgsnlVVKJrAo4q396WWstcL/2oGR/+J5K/Otlh0BBjJ+ND6tlKqOMFVLm6sE8WL0490Y9C2kumf9kDXV3QqganPnGS7/2MqqJBHrqhDXUbSZhkcExYfZwFjMqHA+Fi6yAFUvtNBC5W6nydWi2Nh1k5QiHtxCnukVnGU7iN0o+tT/H5d3UEklT+xIE0tILWcrXII=
file:
- core/target/librespot-java-core-jar-with-dependencies.jar
- core/target/librespot-java-core-javadoc.jar
- core/target/librespot-java-core-sources.jar
- api/target/librespot-java-api-jar-with-dependencies.jar
- api/target/librespot-java-api-javadoc.jar
- api/target/librespot-java-api-sources.jar
- api-client/target/librespot-java-api-client-jar-with-dependencies.jar
- api-client/target/librespot-java-api-client-javadoc.jar
- api-client/target/librespot-java-api-client-sources.jar
- core/target/librespot-core-jar-with-dependencies.jar
- core/target/librespot-core-javadoc.jar
- core/target/librespot-core-sources.jar
- api/target/librespot-api-jar-with-dependencies.jar
- api/target/librespot-api-javadoc.jar
- api/target/librespot-api-sources.jar
- api-client/target/librespot-api-client-jar-with-dependencies.jar
- api-client/target/librespot-api-client-javadoc.jar
- api-client/target/librespot-api-client-sources.jar
on:
repo: librespot-org/librespot-java
tags: true
Expand Down
27 changes: 27 additions & 0 deletions api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,33 @@
<packaging>jar</packaging>

<name>librespot-java api</name>
<build>
<finalName>librespot-api</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<archive>
<manifest>
<mainClass>xyz.gianlu.librespot.api.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<name>librespot-java core</name>

<build>
<finalName>librespot-java-core</finalName>
<finalName>librespot-core</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit 47b64bd

Please sign in to comment.