27 lines
452 B
Groovy
Raw Normal View History

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