From b385366257223df669e41e0606322b2b6a290ff6 Mon Sep 17 00:00:00 2001 From: Gwendal Date: Wed, 8 Aug 2018 00:58:03 +0200 Subject: [PATCH] Remove "-all" from the jar suffix --- README.md | 6 +++--- build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 83bf338..b1c08f9 100644 --- a/README.md +++ b/README.md @@ -29,14 +29,14 @@ This JSON file can then be used using the mandatory parameter `--cookies-file`: ## Installation After each commit, the continuous integration (CI) builds a new standalone (ie. that includes all dependencies) executable jar that can be used as is. -The last produced jar can always be found [at this link](https://framagit.org/Gwendal/bandcamp-collection-downloader/-/jobs/artifacts/master/raw/build/libs/bandcamp-collection-downloader-all.jar?job=build). +The last produced jar can always be found [at this link](https://framagit.org/Gwendal/bandcamp-collection-downloader/-/jobs/artifacts/master/raw/build/libs/bandcamp-collection-downloader.jar?job=build). ## Usage Example of command: ```dtd -$ java -jar bandcamp-collection-downloader-all.jar --cookies-file=cookies.json --download-folder=~/Music myBandcampIdentifier +$ java -jar bandcamp-collection-downloader.jar --cookies-file=cookies.json --download-folder=~/Music myBandcampIdentifier ``` This will download all albums ever bought by the Bandcamp account *myBandcampIdentifier*, @@ -54,7 +54,7 @@ $ cd bandcamp-collection-downloader $ gradle fatjar ``` -The resulting binary can then be found in `build/libs/bandcamp-collection-downloader-all.jar`. +The resulting binary can then be found in `build/libs/bandcamp-collection-downloader.jar`. ## Dependencies diff --git a/build.gradle b/build.gradle index cd4c500..6dacd35 100644 --- a/build.gradle +++ b/build.gradle @@ -29,7 +29,7 @@ task fatJar(type: Jar) { manifest { attributes 'Main-Class': 'bandcampcollectiondownloader.BandcampCollectionDownloaderKt' } - baseName = project.name + '-all' + baseName = project.name from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } } with jar } \ No newline at end of file