Files
openide/plugins/java-decompiler/engine/build.gradle
Ilyas Selimov cc2ba89abf java decompiler - added dependency to jetbrains-annotations
GitOrigin-RevId: 86cb94e900f8b1d99031f458ea66531be9158295
2021-12-15 09:30:08 +00:00

27 lines
657 B
Groovy

// Copyright 2000-2021 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 '11'
targetCompatibility '11'
}
sourceSets {
main.java.srcDirs 'src'
test.java.srcDirs 'test'
}
repositories { mavenCentral() }
dependencies {
implementation 'org.jetbrains:annotations:20.1.0'
testImplementation 'junit:junit:4.12'
testImplementation 'org.assertj:assertj-core:3.12.2'
}
jar {
archiveFileName = 'fernflower.jar'
manifest {
attributes 'Main-Class': 'org.jetbrains.java.decompiler.main.decompiler.ConsoleDecompiler'
}
}