-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
35 lines (29 loc) · 989 Bytes
/
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
buildscript {
repositories {
jcenter()
maven { url 'http://repo.spring.io/plugins-release' }
mavenCentral()
}
dependencies { classpath 'io.spring.gradle:dependency-management-plugin:1.0.4.RELEASE' }
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'io.spring.dependency-management'
group = 'com.infi'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories { mavenCentral() }
dependencyManagement { imports { mavenBom 'io.spring.platform:platform-bom:Brussels-SR6' } }
dependencies {
compile 'org.projectlombok:lombok'
compile 'org.apache.commons:commons-lang3'
compile 'commons-codec:commons-codec'
compile 'commons-io:commons-io'
compile 'com.google.guava:guava'
compile 'org.slf4j:slf4j-api'
compile 'javax.inject:javax.inject'
compile 'org.javassist:javassist:3.21.0-GA'
compile 'org.springframework.amqp:spring-rabbit:1.7.1.RELEASE'
testCompile 'org.springframework.boot:spring-boot-starter-web'
}