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.
24 lines
436 B
24 lines
436 B
7 years ago
|
apply plugin: 'java'
|
||
|
|
||
|
compileJava {
|
||
|
sourceCompatibility '1.8'
|
||
|
targetCompatibility '1.8'
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
main.java.srcDirs 'src'
|
||
|
test.java.srcDirs 'test'
|
||
|
}
|
||
|
|
||
|
repositories { jcenter() }
|
||
|
dependencies {
|
||
|
testCompile 'junit:junit:4.+'
|
||
|
testCompile 'org.assertj:assertj-core:3.+'
|
||
|
}
|
||
|
|
||
|
jar {
|
||
|
archiveName 'fernflower.jar'
|
||
|
manifest {
|
||
|
attributes 'Main-Class': 'org.jetbrains.java.decompiler.main.decompiler.ConsoleDecompiler'
|
||
|
}
|
||
|
}
|