-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
66 lines (57 loc) · 2.19 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
66
apply plugin: 'java'
apply plugin: 'application'
sourceCompatibility = '12'
targetCompatibility = '12'
repositories {
mavenCentral()
}
version = "3.1.5"
jar {
manifest {
attributes("Implementation-Title": "AKP", "Implementation-Version": version, "Implementation-Timestamp": new Date())
}
}
sourceSets {
main {
resources {
srcDir 'src/main/webapp'
}
}
}
mainClassName = "net.plantkelt.app.AkpApplication"
dependencies {
implementation 'org.apache.logging.log4j:log4j-core:2.19.0'
implementation 'org.slf4j:slf4j-reload4j:2.0.5'
implementation 'org.slf4j:jul-to-slf4j:1.7.25'
implementation 'com.google.inject:guice:5.1.0'
implementation 'com.google.inject.extensions:guice-servlet:5.1.0'
implementation 'com.google.inject.extensions:guice-assistedinject:5.1.0'
implementation 'com.google.inject.extensions:guice-persist:5.1.0'
implementation 'org.hibernate:hibernate-core:5.4.28.Final'
implementation 'org.hibernate:hibernate-entitymanager:5.4.28.Final'
implementation 'org.dom4j:dom4j:2.1.4'
implementation 'org.javassist:javassist:3.19.0-GA'
implementation 'org.postgresql:postgresql:42.5.3'
implementation 'jfree:jfreechart:1.0.13'
implementation 'javax.mail:mail:1.4.6'
implementation 'com.beust:jcommander:1.72'
implementation 'org.apache.wicket:wicket-core:9.12.0'
implementation 'org.apache.wicket:wicket-auth-roles:9.12.0'
implementation 'org.apache.wicket:wicket-extensions:9.12.0'
implementation 'org.wicketstuff:wicket-datetime:9.12.0'
implementation 'org.apache.wicket:wicket-devutils:9.12.0'
implementation 'org.apache.wicket:wicket-guice:9.12.0'
implementation 'org.eclipse.jetty:jetty-server:9.4.7.v20170914'
implementation 'org.eclipse.jetty:jetty-servlet:9.4.7.v20170914'
implementation 'org.eclipse.jetty:jetty-webapp:9.4.7.v20170914'
implementation 'org.eclipse.jetty:jetty-util:9.4.7.v20170914'
implementation 'org.eclipse.jetty:jetty-security:9.4.7.v20170914'
testImplementation 'junit:junit:3.8.1'
}
dependencies {
modules {
module("javax.servlet:servlet-api") {
replacedBy("javax.servlet:javax.servlet-api")
}
}
}