forked from chochos/ceylon-springboot-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
33 lines (27 loc) · 795 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
plugins {
id 'com.athaydes.ceylon' version '1.1.2'
}
defaultTasks 'runCeylon'
group 'com.lucono.ceylon.springboot.demo'
version '1.0'
repositories {
mavenCentral()
maven {
url "http://repo.jenkins-ci.org/releases"
}
}
ceylon {
module = 'com.lucono.ceylon.springboot.demo'
moduleExclusions = [ 'ch.qos.logback:logback-classic' ]
}
dependencies {
ceylonCompile "org.springframework.boot:spring-boot-starter-web:1.3.2.RELEASE", {
exclude group: "ch.qos.logback"
}
ceylonCompile "org.springframework.boot:spring-boot-starter-data-jpa:1.3.2.RELEASE", {
exclude group: "ch.qos.logback"
}
ceylonCompile "org.springframework.boot:spring-boot-starter-jdbc:1.3.2.RELEASE", {
exclude group: "ch.qos.logback"
}
}