-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (36 loc) · 1018 Bytes
/
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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.1.4'
}
group 'com.github.procyon-projects'
version '1.0.1'
sourceCompatibility = 11
repositories {
mavenLocal()
maven { name "M2" ; url 'https://plugins.gradle.org/m2/' }
maven { url "https://www.jetbrains.com/intellij-repository/releases" }
maven { url "https://cache-redirector.jetbrains.com/intellij-dependencies" }
mavenCentral()
}
dependencies {
implementation group: 'org.json', name: 'json', version: '20200518'
testImplementation group: 'junit', name: 'junit', version: '4.12'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version = '2021.2'
updateSinceUntilBuild = false
type = 'GO'
plugins = ['org.jetbrains.plugins.go:212.4746.52']
}
patchPluginXml {
sinceBuild = '203'
changeNotes = """
v1.0 first version.
"""
}
runIde {
autoReloadPlugins = true
buildSearchableOptions.enabled = false
}
targetCompatibility = JavaVersion.VERSION_11