-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
60 lines (53 loc) · 1.86 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
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'
apply plugin: 'application'
mainClassName = "controller.Application"
//mainClassName = "crypt.CryptCommander"
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
mavenCentral()
maven {
url 'http://www.janus-project.org/maven'
}
}
jar {
manifest {
attributes 'Implementation-Title': 'SXP network',
'Implementation-Version': 1.0
}
}
sourceSets.main.resources.srcDirs += ["src/main/ressources"]
dependencies {
compile 'org.eclipse.jetty:jetty-webapp:9.3.13.M0'
compile 'org.apache.commons:commons-collections4:4.0'
compile 'org.eclipse.jetty:jetty-server:9.2.3.v20140905'
compile 'org.eclipse.jetty:jetty-servlet:9.2.3.v20140905'
compile 'org.glassfish.jersey.core:jersey-server:2.7'
compile 'org.glassfish.jersey.containers:jersey-container-servlet:2.7'
compile 'org.glassfish.jersey.containers:jersey-container-servlet-core:2.7'
compile 'org.glassfish.jersey.containers:jersey-container-jetty-http:2.7'
compile 'org.glassfish.jersey.media:jersey-media-moxy:2.7'
compile 'javax:javaee-api:7.0'
compile 'org.apache.derby:derby:10.12.1.1'
compile 'org.eclipse.persistence:eclipselink:2.6.3-M1'
compile 'org.eclipse.persistence:javax.persistence:2.1.1'
compile 'com.fasterxml.jackson.core:jackson-databind:2.6.3'
compile 'com.kenai.jxse:jxse:2.7'
compile 'org.jdom:jdom2:2.0.6'
compile fileTree(dir: './libs', include: '*.jar')
compile 'com.google.guava:guava:19.0'
compile 'com.fasterxml.jackson.core:jackson-databind:2.6.3'
compile 'org.shredzone.acme4j:acme4j-utils:0.8'
compile 'org.apache.maven.shared:maven-shared-utils:0.2'
testCompile group: 'junit', name: 'junit', version: '4.+'
}
[compileJava, compileTestJava]*.options.collect {options ->
options.encoding = 'UTF-8'}
eclipse {
classpath {
downloadSources = true
downloadJavadoc = true
}
}