Browse Source

Remove "-all" from the jar suffix

master
Gwendal 7 years ago
parent
commit
b385366257
2 changed files with 4 additions and 4 deletions
  1. +3
    -3
      README.md
  2. +1
    -1
      build.gradle

+ 3
- 3
README.md View File

@ -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


+ 1
- 1
build.gradle View File

@ -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
}

Loading…
Cancel
Save