-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
42 lines (34 loc) · 877 Bytes
/
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.0"
}
repositories {
mavenCentral();
}
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
apply plugin: 'idea'
sourceCompatibility = 1.8
dependencies {
compile 'com.rallydev.rest:rally-rest-api:2.2.1'
testCompileOnly 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:2.23.4'
testImplementation(
'org.junit.jupiter:junit-jupiter-api:5.1.0'
)
testRuntimeOnly(
'org.junit.jupiter:junit-jupiter-engine:5.1.0',
'org.junit.vintage:junit-vintage-engine:5.1.0'
)
}
intellij {
version 'IC-2018.3.2'
plugins = ['tasks']
pluginName 'rallydev'
intellij.updateSinceUntilBuild true //Disables updating since-build attribute in plugin.xml
}
/*
publishPlugin {
username intellijPublishUsername
password intellijPublishPassword
}
*/