forked from banq/jdonframework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
43 lines (35 loc) · 1.72 KB
/
build.gradle
File metadata and controls
43 lines (35 loc) · 1.72 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
apply plugin: 'java'
apply plugin: 'maven'
group = 'org.jdon'
version = '6.9-SNAPSHOT'
description = """jdonframework"""
sourceCompatibility = 1.6
targetCompatibility = 1.6
repositories {
maven { url "https://github.com/banq/jdon-mvn-repo/raw/master/releases" }
maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
compile group: 'net.sf.scannotation', name: 'scannotation', version:'1.0.2'
compile group: 'org.picocontainer', name: 'picocontainer', version:'1.2'
compile group: 'javassist', name: 'javassist', version:'3.4.GA'
compile group: 'com.google.guava', name: 'guava', version:'14.0.1'
compile group: 'regexp', name: 'regexp', version:'1.2'
compile group: 'com.lmax', name: 'disruptor', version:'3.2.0'
compile group: 'cglib', name: 'cglib', version:'2.2.2'
compile group: 'aopalliance', name: 'aopalliance', version:'1.0'
compile group: 'commons-pool', name: 'commons-pool', version:'1.6'
compile group: 'jdom', name: 'jdom', version:'1.0'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version:'2.0-beta8'
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version:'2.0-beta8'
compile group: 'net.sf.ehcache', name: 'ehcache', version:'1.6.2'
testCompile group: 'junit', name: 'junit', version:'3.8.1'
compile(group: 'javax.servlet', name: 'servlet-api', version:'2.5') {
/* This dependency was originally in the Maven provided scope, but the project was not of type war.
This behavior is not yet supported by Gradle, so this dependency has been converted to a compile dependency.
Please review and delete this closure when resolved. */
}
}
tasks.withType(Compile) {
options.encoding = "UTF-8"
}