Skip to content

Commit

Permalink
v1.1.1. basename + exclude extra props.
Browse files Browse the repository at this point in the history
  • Loading branch information
suranjayathilaka committed Aug 25, 2017
1 parent 4db0ee7 commit 1918273
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'uk.ac.ebi.ena'
version 'v1.1'
version 'v1.1.1'

apply plugin: 'java'
apply plugin: 'idea'
Expand Down Expand Up @@ -38,6 +38,8 @@ task copyToLib(type: Copy) {


jar {
baseName 'ena-file-downloader'

dependsOn configurations.compile
from {
(configurations.compile).collect {
Expand All @@ -46,6 +48,7 @@ jar {
} {
exclude "META-INF/**"
exclude "LICENSE"
exclude "controlsfx_*.properties"
}
manifest {
attributes 'Implementation-Title': 'ENA File Downloader',
Expand All @@ -66,3 +69,4 @@ dependencies {
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.1'
testCompile group: 'junit', name: 'junit', version: '4.11'
}

0 comments on commit 1918273

Please sign in to comment.