-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
42 lines (35 loc) · 1.08 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
plugins {
id "org.jetbrains.intellij" version "0.4.9"
}
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
intellij {
plugins 'java'
version 'IC-2020.1.3'
// version 'IC-2016.2.5'
//version 'IC-2018.2.1'
pluginName 'apiDoc'
updateSinceUntilBuild false
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
group 'com.suiyiwen.plugin.idea'
version '3.0.5'
repositories {
mavenLocal()
maven { url "http://192.168.180.191:8081/nexus/content/repositories/public" }
maven { url "http://192.168.180.191:8081/nexus/content/repositories/snapshots" }
maven { url "http://maven.aliyun.com/repository/public" }
maven { url "http://maven.aliyun.com/repository/spring" }
maven { url "http://maven.aliyun.com/repository/google" }
mavenCentral()
}
dependencies {
compile 'com.alibaba:fastjson:1.2.45'
compileOnly 'org.projectlombok:lombok:1.16.18'
testCompile 'junit:junit:4.12'
compile 'com.github.jsonzou:jmockdata:3.1.0'
}