-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathbuild.gradle
86 lines (66 loc) · 2.3 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'war'
apply plugin: 'eclipse-wtp'
eclipse.project {
natures 'org.springsource.ide.eclipse.gradle.core.nature',
'org.springframework.ide.eclipse.core.springnature',
'org.eclipse.jdt.core.javanature'
// linkedResource name: 'Configuration', type: '2', locationUri: 'PARENT-2-PROJECT_LOC/Configuration'
}
version = '2.0-SNAPSHOT'
group = 'com.ohadr.auth-flows'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
}
ext {
ohadr_spring_security_version = "4.0.3.RELEASE"
ohadr_spring_version = "4.2.4.RELEASE"
ohadr_flows_version = "2.1-RELEASE"
}
dependencies {
compile "com.ohadr:authentication-flows:$ohadr_flows_version"
compile "org.springframework.security:spring-security-core:$ohadr_spring_security_version"
compile "org.springframework.security:spring-security-config:$ohadr_spring_security_version"
compile "org.springframework.security:spring-security-web:$ohadr_spring_security_version"
compile "org.springframework.security:spring-security-taglibs:$ohadr_spring_security_version"
compile "org.springframework:spring-web:$ohadr_spring_version"
compile "org.springframework:spring-core:$ohadr_spring_version"
compile "org.springframework:spring-aop:$ohadr_spring_version"
compile "org.springframework:spring-context:$ohadr_spring_version"
compile "org.springframework:spring-beans:$ohadr_spring_version"
compile "org.springframework:spring-jdbc:$ohadr_spring_version"
compile "org.springframework:spring-webmvc:$ohadr_spring_version"
compile "org.springframework:spring-tx:$ohadr_spring_version"
compile "org.springframework:spring-expression:$ohadr_spring_version"
compile "org.springframework:spring-context-support:$ohadr_spring_version"
compile "cglib:cglib:2.2.2"
testCompile "javax.servlet:servlet-api:2.5"
compile "javax.servlet:jstl:1.2"
compile "log4j:log4j:1.2.17"
compile "commons-codec:commons-codec:1.5"
runtime "com.mchange:c3p0:0.9.5.1"
runtime "mysql:mysql-connector-java:5.1.16"
runtime "com.jamonapi:jamon:2.4"
}
sourceSets {
main {
java {
}
resources {
srcDir '$projectDir/../src/main/resources/'
}
}
}
war {
baseName = 'auth-flows-client'
manifest {
attributes(
'provider': 'gradle',
'Product-Version': version,
)
}
}