This repository was archived by the owner on Jan 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuild.gradle
56 lines (46 loc) · 1.84 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
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'groovy'
apply plugin: 'maven'
apply plugin: 'application'
def execMainClassName = 'com.rimerosolutions.gorm.Application'
def organizationId = 'rimerosolutions'
def projectSourceCompatibility = '1.6'
def projectTargetCompatibility = '1.6'
sourceCompatibility = projectSourceCompatibility
targetCompatibility = projectTargetCompatibility
mainClassName = "${execMainClassName}"
def mavenArtifactId = 'gorm-standalone-example'
def slf4jVersion = '1.6.4'
def groovyVersion = '2.0.8'
def springFrameworkUaaVersion = '1.0.3.RELEASE'
def grailsVersion = '2.2.4'
def gormVersion = '1.3.7'
def junitVersion = '4.11'
def log4jVersion = '1.2.16'
def h2Version = '1.3.170'
def gradleWrapperVersion = '1.6'
repositories {
mavenCentral()
mavenLocal()
maven { url 'http://repo.grails.org/grails/core/' }
}
dependencies {
compile ("org.slf4j:slf4j-api:$slf4jVersion",
"org.slf4j:slf4j-log4j12:$slf4jVersion",
"log4j:log4j:$log4jVersion",
"org.codehaus.groovy:groovy-all:$groovyVersion",
"org.grails:grails-gorm:$gormVersion",
"org.grails:grails-bootstrap:$grailsVersion",
"com.h2database:h2:$h2Version",
"org.grails:grails-spring:$grailsVersion")
compile("org.springframework.uaa:org.springframework.uaa.client:$springFrameworkUaaVersion") {
exclude group: 'org.springframework.roo.wrapping', module:'*'
}
testCompile "junit:junit:$junitVersion"
}
task wrapper(type: Wrapper, description: 'Generates the Gradle wrapper.') {
gradleVersion = gradleWrapperVersion
jarFile = 'wrapper/wrapper.jar'
}