forked from maximehamm/i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (43 loc) · 1.09 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
plugins {
id 'org.jetbrains.intellij' version '0.7.2'
id 'org.jetbrains.kotlin.jvm' version '1.5.21'
id 'java'
}
group 'io.nimbly.i18n'
version '1.3.1'
repositories {
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
}
dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.2'")
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version = '2021.3'
plugins = ['java',
'com.intellij.properties']
}
patchPluginXml {
changeNotes = """
<ul>
<li><b>1.3</b> IDEA 2021.3 compatibility</li>
<li><b>1.2</b> IDEA 2020.3 compatibility</li>
<li><b>1.1</b> IDEA 2020.1 compatibility</li>
<li><b>1.0</b> Initial version</li>
</ul>
"""
}
test {
useJUnitPlatform()
}
runPluginVerifier {
ideVersions('IC-2021.3.1')
}
publishPlugin {
token = System.getenv("ORG_GRADLE_PROJECT_intellijPublishToken")
}