-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (32 loc) · 977 Bytes
/
build.gradle
File metadata and controls
41 lines (32 loc) · 977 Bytes
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 "org.jetbrains.intellij" version "1.11.0"
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
maven{ url'https://maven.aliyun.com/nexus/content/groups/public/'}
mavenCentral()
}
dependencies {
implementation group: 'com.google.code.findbugs', name: 'annotations', version: '3.0.1'
// implementation group: 'com.intellij', name: 'openapi', version: '7.0.3'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
implementation group: 'org.freemarker', name: 'freemarker', version: '2.3.32'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
intellij {
version = '2021.3.2'
}
patchPluginXml {
changeNotes = """
Add change notes here.<br>
<em>most HTML tags may be used</em>"""
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
test {
useJUnitPlatform()
}