-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
29 lines (24 loc) · 762 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
apply plugin: 'java'
apply plugin: 'application'
repositories {
jcenter()
}
sourceSets {
main {
java {
srcDir 'src/main/java'
}
resources {
srcDir 'resources/assets/configuration/spring/dependencyinjection/configuration/'
}
}
}
dependencies {
compile 'org.springframework:spring-aop:3.2.13.RELEASE',
'org.springframework:spring-beans:3.2.13.RELEASE',
'org.springframework:spring-context:3.2.13.RELEASE',
'org.springframework:spring-core:3.2.13.RELEASE',
'org.springframework:spring-expression:3.2.13.RELEASE'
testCompile 'junit:junit:4.8.2'
}
mainClassName = 'com.seriouscompany.business.java.fizzbuzz.packagenamingpackage.impl.Main'