-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
53 lines (45 loc) · 1.21 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
buildscript {
repositories {
mavenCentral()
}
}
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.13'
}
group 'io.github'
version '1.6.2'
sourceCompatibility = JavaVersion.VERSION_11
repositories {
mavenCentral()
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.10'
annotationProcessor 'org.projectlombok:lombok:1.18.10'
compile("com.squareup.okhttp3:logging-interceptor:3.12.0")
compile("com.squareup.retrofit2:retrofit:2.4.0")
compile("com.squareup.retrofit2:converter-gson:2.5.0")
compile("org.aspectj:aspectjrt:1.9.2")
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.assertj', name: 'assertj-core', version: '3.11.1'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.8.1'
}
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
apply plugin: 'idea'
intellij {
version = '2019.2'
plugins = ['properties', 'java']
pluginName 'Allure to TestRail exporter plugin'
updateSinceUntilBuild = false
patchPluginXml {
sinceBuild '192'
}
}
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
wrapper.gradleVersion = '6.0.1'