-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
59 lines (50 loc) · 2.03 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
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'groovy'
apply plugin: 'maven'
apply plugin: 'application'
def execMainClassName = 'com.bytefirm.finance.Application'
def organizationId = 'bytefirm'
def projectSourceCompatibility = '1.7'
def projectTargetCompatibility = '1.7'
sourceCompatibility = projectSourceCompatibility
targetCompatibility = projectTargetCompatibility
mainClassName = "${execMainClassName}"
def mavenArtifactId = 'bytefirm-finance'
def slf4jVersion = '1.4.2'
def groovyVersion = '2.2.1'
def springFrameworkBomVersion = '4.0.1.RELEASE'
def junitVersion = '4.11'
def h2Version = '1.3.175'
def gradleWrapperVersion = '1.10'
def postgreSQLVersion = '9.3-1100-jdbc41'
def commonsCollectionsVersion = '3.2.1'
def jtaVersion = '1.1'
def hibernateVersion = '3.4.0.GA'
def hsqldbVersion = '1.8.0.7'
def javaAssistVersion = '3.4.GA'
def jsonJackson = '1.9.13'
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
compile ("org.codehaus.groovy:groovy-all:$groovyVersion",
"org.springframework:spring-framework-bom:$springFrameworkBomVersion",
"com.h2database:h2:$h2Version",
"org.postgresql:postgresql:$postgreSQLVersion",
"commons-collections:commons-collections:$commonsCollectionsVersion",
"javax.transaction:jta:$jtaVersion",
"org.hibernate:hibernate-annotations:$hibernateVersion",
"org.slf4j:slf4j-simple:$slf4jVersion",
"hsqldb:hsqldb:$hsqldbVersion",
"javassist:javassist:$javaAssistVersion",
"org.codehaus.jackson:jackson-mapper-asl:$jsonJackson"
)
testCompile "junit:junit:$junitVersion"
}
task wrapper(type: Wrapper, description: 'Generates the Gradle wrapper.') {
gradleVersion = gradleWrapperVersion
jarFile = 'wrapper/wrapper.jar'
}