-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
35 lines (29 loc) · 910 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
plugins {
id 'com.athaydes.ceylon' version '1.2.0'
}
defaultTasks 'runCeylon'
group 'com.lucono.ceylon.springboot.demo'
version '1.0'
repositories {
mavenCentral()
maven {
url "http://repo.jenkins-ci.org/releases"
}
}
ceylon {
ceylonLocation = "/Users/ezamudio/Projects/ceylon/ceylon/dist/dist/bin/ceylon"
module = 'com.lucono.ceylon.springboot.demo'
moduleExclusions = [ 'ch.qos.logback:logback-classic' ]
overrides = 'overrides.xml'
}
dependencies {
ceylonCompile "org.springframework.boot:spring-boot-starter-web:1.4.1.RELEASE", {
exclude group: "ch.qos.logback"
}
ceylonCompile "org.springframework.boot:spring-boot-starter-data-jpa:1.4.1.RELEASE", {
exclude group: "ch.qos.logback"
}
ceylonCompile "org.springframework.boot:spring-boot-starter-jdbc:1.4.1.RELEASE", {
exclude group: "ch.qos.logback"
}
}