-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
71 lines (54 loc) · 2.2 KB
/
build.gradle
File metadata and controls
71 lines (54 loc) · 2.2 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
//axonVersion = "0.6"
//springVersion = "4.0.5.RELEASE"
//springSecurityVersion = "3.0.3.RELEASE"
//slf4jVersion = "1.5.8"
//sourceCompatibility = 1.5
subprojects {
apply plugin: 'java'
configurations {
all*.exclude group: "commons-logging", module: "commons-logging"
// jasperreports {
// transitive = true
// }
}
// gradle.projectsEvaluated {
// processResources.dependsOn(compileJasperReports)
// }
repositories {
mavenCentral()
// jcenter()
// maven { url "http://jasperreports.sourceforge.net/maven2/" }
// maven { url "http://jaspersoft.artifactoryonline.com/jaspersoft/third-party-ce-artifacts/" }
}
dependencies {
compile "org.slf4j:jcl-over-slf4j:1.5.8",
"org.slf4j:jul-to-slf4j:1.5.8"
runtime "org.slf4j:slf4j-log4j12:1.5.8"
compile 'javax.mail:mail:1.4.3'
compile("org.springframework:spring-context-support:4.1.4.RELEASE")
compile("log4j:log4j:1.2.14") {
exclude group: "com.sun.jdmk", module: "jmxtools"
exclude group: "com.sun.jmx", module: "jmxri"
exclude group: "javax.mail", module: "mail"
exclude group: "javax.jms", module: "jms"
}
// compile 'net.sourceforge.dynamicreports:dynamicreports-core:4.0.0'
// compile 'net.sourceforge.dynamicreports:dynamicreports-adhoc:3.0.0'
compile 'org.codehaus.groovy:groovy-all:2.3.6'
compile 'org.codehaus.groovy:groovy:2.3.6'
testCompile 'junit:junit:4.7'
}
// task compileJasperReports {
// def jasperSourceDir = file('src/main/jasperreports')
// ant {
// taskdef(name: 'jrc', classname: 'net.sf.jasperreports.ant.JRAntCompileTask', classpath: configurations.jasperreports.asPath)
// sourceSets.main.output.classesDir.mkdirs()
// jrc(srcdir: jasperSourceDir, destdir: sourceSets.main.output.classesDir) {
// classpath(path: sourceSets.main.output.classesDir)
// include(name: '**/*.jrxml')
// }
// }
// classes.dependsOn compileJasperJava
group = 'org.egreen.opensmspro'
version = '1.0-SNAPSHOT'
}