mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 01:50:56 +07:00
27 lines
657 B
Groovy
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'
|
|
}
|
|
}
|