forked from crowdin/android-studio-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
67 lines (54 loc) · 1.6 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
65
66
67
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.6.5'
id 'jacoco'
}
group 'com.crowdin.crowdin-idea'
version '1.6.0'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
compile 'org.projectlombok:lombok:1.18.10'
annotationProcessor 'org.projectlombok:lombok:1.18.10'
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'net.lingala.zip4j', name: 'zip4j', version: '1.3.2'
compile 'com.github.crowdin:crowdin-api-client-java:1.3.10'
implementation 'org.apache.commons:commons-lang3:3.12.0'
// compile group: 'commons-io', name: 'commons-io', version: '2.6' //to run '2017.1.6' idea
testCompile('org.junit.jupiter:junit-jupiter:5.5.2')
testCompile('org.hamcrest:hamcrest:2.2')
testCompile('org.mockito:mockito-core:2.1.0')
}
test {
useJUnitPlatform()
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
// version '2017.1.6' //current since-version //requires additional libraries
version '2019.2.3'
// version '2020.3.1' //current last version //requires 11 JDK to execute 'runIde'
plugins 'git4idea'
updateSinceUntilBuild false
}
patchPluginXml {
changeNotes """
- String keys autocompletion"""
}
wrapper {
gradleVersion = '5.2.1'
}
jacoco {
toolVersion = "0.8.5"
reportsDir = file("$buildDir/reports")
}
jacocoTestReport {
reports {
xml.enabled true
csv.enabled false
xml.destination file("${buildDir}/coverage.xml")
}
getExecutionData().setFrom("$buildDir/jacoco/test.exec")
}