-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependencies.gradle
75 lines (70 loc) · 4.03 KB
/
dependencies.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
68
69
70
71
72
73
74
75
ext.libraryVersions = [
ant: '1.8.4',
asm: '3.1',
buildtasks: '1.0-SNAPSHOT',
commons_collections: '3.2.1',
commons_io: '2.2',
commons_lang: '2.4',
commons_logging: '1.0.4',
forms_rt: '11.0.3',
glazedLists: '1.8.0',
jdom: '1.0',
jhall: '2.0.6',
jtidy: '04aug2000r7-dev',
log4j: '1.2.15',
svnkit: '1.7.4-v1',
testng: '6.4',
version_tool: '1.1.4_fixed',
xstream: '1.2'
]
configurations {
source
}
dependencies {
compile 'org.jdom:jdom:'+ libraryVersions.jdom,
'ca.odell.glazedlists:jdk_1.5:'+ libraryVersions.glazedLists,
'org.codehaus.xstream:xstream:'+ libraryVersions.xstream,
'org.tmatesoft.svnkit:svnkit:'+ libraryVersions.svnkit,
'w3c:jtidy:'+ libraryVersions.jtidy,
'com.ryangrier.ant:version_tool:'+ libraryVersions.version_tool,
'com.nurflugel:buildtasks:'+ libraryVersions.buildtasks,
'org.apache:commons-logging:'+ libraryVersions.commons_logging,
'org.apache:commons-lang:'+ libraryVersions.commons_lang,
'org.apache:commons-collections:'+ libraryVersions.commons_collections,
'org.apache:commons-io:'+ libraryVersions.commons_io,
'com.intellij:forms_rt:'+ libraryVersions.forms_rt,
'org.apache:log4j:'+ libraryVersions.log4j,
'org.testng:testng:'+ libraryVersions.testng,
'org.objectweb.asm:asm:'+ libraryVersions.asm,
'javax.help:jhall:'+ libraryVersions.jhall
runtime 'org.jdom:jdom:'+ libraryVersions.jdom,
'ca.odell.glazedlists:jdk_1.5:'+ libraryVersions.glazedLists,
'org.codehaus.xstream:xstream:'+ libraryVersions.xstream,
'org.tmatesoft.svnkit:svnkit:'+ libraryVersions.svnkit,
'w3c:jtidy:'+ libraryVersions.jtidy,
'org.apache:commons-logging:'+ libraryVersions.commons_logging,
'org.apache:commons-lang:'+ libraryVersions.commons_lang,
'org.apache:commons-collections:'+ libraryVersions.commons_collections,
'org.apache:commons-io:'+ libraryVersions.commons_io,
'com.intellij:forms_rt:'+ libraryVersions.forms_rt,
'org.apache:log4j:'+ libraryVersions.log4j,
'org.testng:testng:'+ libraryVersions.testng,
'org.objectweb.asm:asm:'+ libraryVersions.asm,
'javax.help:jhall:'+ libraryVersions.jhall
source 'org.jdom:jdom:'+ libraryVersions.jdom,
'ca.odell.glazedlists:jdk_1.5:'+ libraryVersions.glazedLists,
'org.codehaus.xstream:xstream:'+ libraryVersions.xstream,
'org.tmatesoft.svnkit:svnkit:'+ libraryVersions.svnkit,
'w3c:jtidy:'+ libraryVersions.jtidy,
'com.ryangrier.ant:version_tool:'+ libraryVersions.version_tool,
'com.nurflugel:buildtasks:'+ libraryVersions.buildtasks,
'org.apache:commons-logging:'+ libraryVersions.commons_logging,
'org.apache:commons-lang:'+ libraryVersions.commons_lang,
'org.apache:commons-collections:'+ libraryVersions.commons_collections,
'org.apache:commons-io:'+ libraryVersions.commons_io,
'com.intellij:forms_rt:'+ libraryVersions.forms_rt,
'org.apache:log4j:'+ libraryVersions.log4j,
'org.testng:testng:'+ libraryVersions.testng,
'org.objectweb.asm:asm:'+ libraryVersions.asm,
'javax.help:jhall:'+ libraryVersions.jhall
}