You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
769 B
31 lines
769 B
plugins { |
|
id 'java' |
|
id 'com.github.johnrengelman.shadow' version '2.0.4' |
|
} |
|
|
|
group 'com.phr00t' |
|
version '1.7-SNAPSHOT' |
|
|
|
sourceCompatibility = 1.8 |
|
|
|
repositories { |
|
mavenCentral() |
|
maven { url "https://clojars.org/repo" } |
|
} |
|
|
|
dependencies { |
|
implementation group: 'ddf.minim', name: 'ddf.minim', version: '2.2.0' |
|
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1' |
|
implementation group: 'net.sf.trove4j', name: 'trove4j', version: '3.0.3' |
|
implementation group: 'org.jsoup', name: 'jsoup', version: '1.11.3' |
|
} |
|
|
|
jar { |
|
manifest { |
|
attributes "Main-Class": "com.phr00t.autostepper.AutoStepper" |
|
} |
|
|
|
from { |
|
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } |
|
} |
|
}
|
|
|