-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
65 lines (44 loc) · 1.62 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
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'maven'
group = 'widen'
version = '0.1.3'
sourceCompatibility = 1.5
targetCompatibility = 1.5
repositories {
mavenCentral()
}
uploadArchives {
repositories.mavenDeployer {
repository(url: 'http://10.101.0.202:8081/nexus/content/repositories/3rdparty') {
authentication(userName: 'darregui', password: 'darregui')
}
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.8.2'
compile group: 'dnsjava', name: 'dnsjava', version: '2.1.1'
compile group: 'com.thoughtworks.xstream', name: 'xstream', version: '1.3.1'
compile group: 'dom4j', name: 'dom4j', version: '1.6.1'
compile group: 'com.mycila.xmltool', name: 'xmltool', version: '3.2'
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.1'
compile group: 'commons-lang', name: 'commons-lang', version: '2.5'
compile group: 'commons-io', name: 'commons-io', version: '2.0.1'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.6.1'
runtime group: 'org.slf4j', name: 'jcl-over-slf4j', version: '1.6.1'
runtime group: 'ch.qos.logback', name: 'logback-core', version: '0.9.27'
compile group: 'ch.qos.logback', name: 'logback-classic', version: '0.9.27'
}
task sourcesJar(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
}
artifacts {
archives sourcesJar
}
eclipseClasspath {
containers = [ 'org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6' ]
}
eclipse.dependsOn = [ cleanEclipseClasspath, eclipseClasspath ]
idea.dependsOn = [ cleanIdeaModule, ideaModule ]