Files
openide/plugins/java-decompiler/engine/build.gradle
Roman Shevchenko 036123ef70 [java-decompiler] fixes versions of test dependencies to make one stupid AI happy (TPV-2349)
GitOrigin-RevId: abc48a40d5911f2a37bf6c6ca35ed230d5f014ac
2019-07-15 15:12:13 +03:00

25 lines
581 B
Groovy

// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
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.12'
testCompile 'org.assertj:assertj-core:3.12.2'
}
jar {
archiveName 'fernflower.jar'
manifest {
attributes 'Main-Class': 'org.jetbrains.java.decompiler.main.decompiler.ConsoleDecompiler'
}
}