-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
49 lines (41 loc) · 1.13 KB
/
build.gradle
File metadata and controls
49 lines (41 loc) · 1.13 KB
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
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'
sourceCompatibility = 1.8
version = '0.1'
group = 'fr.hopelessworld.plugin'
jar {
manifest {
attributes 'Implementation-Title': 'Angular Strategy for Hopeless EntityAnalyzePlugin',
'Implementation-Version': version
}
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile group: 'fr.hopelessworld.plugin', name: 'HopelessEntityAnalyzer', version: '0.2'
compile group: 'commons-collections', name: 'commons-collections', version: '3.2'
compile 'commons-io:commons-io:2.4'
testCompile group: 'junit', name: 'junit', version: '4.+'
testCompile 'org.mockito:mockito-all:1.10.19'
}
test {
systemProperties 'property': 'value'
}
uploadArchives {
repositories {
flatDir {
dirs 'repos'
}
}
}
eclipse {
classpath {
downloadSources = true
downloadJavadoc = true
containers.remove('org.eclipse.jdt.launching.JRE_CONTAINER')
containers 'org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8'
}
}