-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
64 lines (55 loc) · 1.67 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
52
53
54
55
56
57
58
59
60
61
62
63
64
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.5.2'
id 'application'
id 'maven'
id "com.github.ben-manes.versions" version "0.42.0"
}
allprojects {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_11
compileJava.options.encoding = 'UTF-8'
repositories {
mavenCentral()
mavenLocal()
google()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
}
}
group 'com.xenoamess'
version '0.0.29'
sourceSets {
main {
java {
srcDirs 'src/main/gen'
}
}
}
intellij {
plugins.set(Arrays.asList("com.intellij.java"))
}
dependencies {
implementation(group: 'com.xenoamess', name: 'x8l', version: '2.3.9') {
exclude group:"pull-parser", module: "pull-parser"
exclude group: 'org.apache.logging.log4j'
exclude group: 'org.slf4j'
}
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.4'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
// See https://www.jetbrains.org/intellij/sdk/docs/reference_guide/intellij_artifacts.html
// See https://www.jetbrains.com/intellij-repository/releases/
// See https://www.jetbrains.com/intellij-repository/snapshots/
intellij {
version.set("2022.1")
updateSinceUntilBuild.set(false)
}
//patchPluginXml {
// changeNotes ""
//}
apply plugin: 'org.jetbrains.intellij'