jtreg6/plugins/idea/build.gradle

37 lines
735 B
Groovy
Raw Normal View History

2023-04-07 10:14:36 +08:00
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.0'
}
def jtregLib = jtregHome + File.separator + "lib" + File.separator + "jtreg.jar"
assert file(jtregLib).exists() : """Could not find jtreg in ${jtregHome}.
Please make sure that 'jtregHome' in 'gradle.properties' points to a valid jtreg root.
"""
version pluginVersion
compileJava {
sourceCompatibility = javaLevel
targetCompatibility = javaLevel
}
repositories {
mavenCentral()
}
dependencies {
implementation files(jtregLib)
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
plugins = ['java', 'AntSupport', 'TestNG-J']
}
patchPluginXml {
changeNotes = notes
sinceBuild = minBuild
untilBuild = ''
}