java-tutorials/intelliJ-modules/stackoverflow-plugin-gradle/build.gradle

27 lines
452 B
Groovy
Raw Normal View History

2020-07-07 07:18:10 -04:00
plugins {
id 'java'
2023-11-15 04:55:56 -05:00
id 'org.jetbrains.intellij' version '1.16.0'
2020-07-07 07:18:10 -04:00
}
group 'com.baeldung'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
2023-11-15 04:55:56 -05:00
testImplementation('junit:junit:4.12')
2020-07-07 07:18:10 -04:00
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
2023-11-15 04:55:56 -05:00
version = "2022.2.5"
type = "IC"
2020-07-07 07:18:10 -04:00
}
2023-11-15 04:55:56 -05:00
2020-07-07 07:18:10 -04:00
patchPluginXml {
2023-11-15 04:55:56 -05:00
changeNotes = """
2020-07-07 07:18:10 -04:00
Add change notes here.<br>
<em>most HTML tags may be used</em>"""
}