Files
openide/plugins/java-decompiler/engine/build.gradle
Tagir Valeev 6b122cadf3 [java-decompiler] Bump language level to 17
GitOrigin-RevId: 7394af4e219d9db170fcf8757180c3350c39e176
2022-09-13 10:30:31 +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 '17'
targetCompatibility '17'
}
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.23.1'
}
jar {
archiveFileName = 'fernflower.jar'
manifest {
attributes 'Main-Class': 'org.jetbrains.java.decompiler.main.decompiler.ConsoleDecompiler'
}
}