-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
51 lines (42 loc) · 1.24 KB
/
Copy pathbuild.gradle
File metadata and controls
51 lines (42 loc) · 1.24 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
group 'io.github.wagnjun'
version '1.0-SNAPSHOT'
apply plugin: "io.spring.dependency-management"
apply plugin: 'java'
apply plugin: 'idea'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
dependencyManagement {
imports {
mavenBom 'org.springframework.data:spring-data-releasetrain:Hopper-SR1'
}
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "io.spring.gradle:dependency-management-plugin:0.5.3.RELEASE"
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile 'org.springframework:spring-context'
compile 'org.springframework.data:spring-data-jpa'
compile 'org.springframework:spring-oxm:4.2.5.RELEASE'
compile 'org.hibernate:hibernate-validator:5.2.4.Final'
compile 'javax.el:javax.el-api:2.2.4'
compile 'org.glassfish.web:javax.el:2.2.4'
compile 'org.slf4j:slf4j-api:1.7.13'
compile 'ch.qos.logback:logback-classic:1.1.3'
compile 'org.codehaus.castor:castor-xml:1.4.1'
compile 'org.aspectj:aspectjweaver:1.8.9'
compile 'com.h2database:h2:1.4.190'
}
jar {
manifest {
attributes 'Main-Class': 'io.github.wagnjun.spring.demo.bootstrap.Application'
}
}