|
@@ -7,7 +7,7 @@ evaluationDependsOn(':iZplPlugins:Extractor')
|
|
evaluationDependsOn(':iZplPlugins:discordjukebox')
|
|
evaluationDependsOn(':iZplPlugins:discordjukebox')
|
|
defaultTasks 'distZip'
|
|
defaultTasks 'distZip'
|
|
|
|
|
|
-apply plugin: 'java'
|
|
|
|
|
|
+apply plugin: 'java-library'
|
|
apply plugin: 'application'
|
|
apply plugin: 'application'
|
|
apply from: "$rootDir/utils/IO.gradle"
|
|
apply from: "$rootDir/utils/IO.gradle"
|
|
|
|
|
|
@@ -103,6 +103,7 @@ distZip {
|
|
from project(':iZplPlugins:Extractor').jar
|
|
from project(':iZplPlugins:Extractor').jar
|
|
from project(':iZplPlugins:discordjukebox').jar
|
|
from project(':iZplPlugins:discordjukebox').jar
|
|
}
|
|
}
|
|
|
|
+ duplicatesStrategy = 'include'
|
|
}
|
|
}
|
|
|
|
|
|
task apiJar(type: Jar, dependsOn: compileJava) {
|
|
task apiJar(type: Jar, dependsOn: compileJava) {
|
|
@@ -122,29 +123,29 @@ sourceSets{
|
|
}
|
|
}
|
|
}
|
|
}
|
|
dependencies{
|
|
dependencies{
|
|
- compile fileTree(dir: 'lib', include: '*.jar')
|
|
|
|
- //compile "net.rubygrapefruit:native-platform:0.9"
|
|
|
|
- compile "commons-io:commons-io:2.+"
|
|
|
|
- compile 'org.apache.commons:commons-exec:1.3'
|
|
|
|
- compile "org.yaml:snakeyaml:1.14"
|
|
|
|
- compile "commons-net:commons-net:3.3"
|
|
|
|
- compile 'uk.co.caprica:vlcj:4.+'
|
|
|
|
- compile 'com.googlecode.mp4parser:isoparser:1.0-RC-1'
|
|
|
|
- compile 'net.java.truevfs:truevfs-profile-default_2.11:0.12.0'
|
|
|
|
- compile 'commons-cli:commons-cli:1.3'
|
|
|
|
- compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.+'
|
|
|
|
- compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.+'
|
|
|
|
- compile group: 'org.apache.logging.log4j', name: 'log4j-iostreams', version: '2.+'
|
|
|
|
- compile group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.+'
|
|
|
|
- compile group: 'org.apache.logging.log4j', name: 'log4j-jul', version: '2.+'
|
|
|
|
- compile 'org.fusesource.jansi:jansi:1.11'
|
|
|
|
- compile 'org.jgrapht:jgrapht-core:0.9.0'
|
|
|
|
- compile(project(':external:java-progressbar'))
|
|
|
|
|
|
+ api fileTree(dir: 'lib', include: '*.jar')
|
|
|
|
+ //api "net.rubygrapefruit:native-platform:0.9"
|
|
|
|
+ api "commons-io:commons-io:2.+"
|
|
|
|
+ api 'org.apache.commons:commons-exec:1.3'
|
|
|
|
+ api "org.yaml:snakeyaml:1.14"
|
|
|
|
+ api "commons-net:commons-net:3.3"
|
|
|
|
+ api 'uk.co.caprica:vlcj:4.+'
|
|
|
|
+ api 'com.googlecode.mp4parser:isoparser:1.0-RC-1'
|
|
|
|
+ api 'net.java.truevfs:truevfs-profile-default_2.11:0.12.0'
|
|
|
|
+ api 'commons-cli:commons-cli:1.3'
|
|
|
|
+ api group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.+'
|
|
|
|
+ api group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.+'
|
|
|
|
+ api group: 'org.apache.logging.log4j', name: 'log4j-iostreams', version: '2.+'
|
|
|
|
+ api group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.+'
|
|
|
|
+ api group: 'org.apache.logging.log4j', name: 'log4j-jul', version: '2.+'
|
|
|
|
+ api 'org.fusesource.jansi:jansi:1.11'
|
|
|
|
+ api 'org.jgrapht:jgrapht-core:0.9.0'
|
|
|
|
+ api(project(':external:java-progressbar'))
|
|
|
|
|
|
- compile(project(':ToolKit')) {
|
|
|
|
|
|
+ api(project(':ToolKit')) {
|
|
transitive = false
|
|
transitive = false
|
|
}
|
|
}
|
|
- compile(project(':izpl-shared'))
|
|
|
|
|
|
+ api(project(':izpl-shared'))
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|