66 lines
1.7 KiB
Groovy
66 lines
1.7 KiB
Groovy
|
buildscript {
|
||
|
ext {
|
||
|
springBootVersion = '1.2.6.RELEASE'
|
||
|
}
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
|
||
|
classpath("io.spring.gradle:dependency-management-plugin:0.5.2.RELEASE")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply plugin: 'java'
|
||
|
apply plugin: 'eclipse-wtp'
|
||
|
apply plugin: 'idea'
|
||
|
apply plugin: 'spring-boot'
|
||
|
apply plugin: 'io.spring.dependency-management'
|
||
|
apply plugin: 'war'
|
||
|
|
||
|
|
||
|
war {
|
||
|
baseName = 'server'
|
||
|
version = '0.0.1-SNAPSHOT'
|
||
|
}
|
||
|
sourceCompatibility = 1.8
|
||
|
targetCompatibility = 1.8
|
||
|
|
||
|
repositories {
|
||
|
jcenter()
|
||
|
mavenCentral()
|
||
|
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
|
||
|
}
|
||
|
|
||
|
configurations {
|
||
|
providedRuntime
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile("org.springframework.boot:spring-boot-starter-hateoas")
|
||
|
compile("org.springframework.boot:spring-boot-starter-jersey")
|
||
|
compile("org.springframework.boot:spring-boot-starter-web")
|
||
|
|
||
|
compile 'ch.dissem.jabit:jabit-domain:0.2.1-SNAPSHOT'
|
||
|
compile 'ch.dissem.jabit:jabit-networking:0.2.1-SNAPSHOT'
|
||
|
compile 'ch.dissem.jabit:jabit-repositories:0.2.1-SNAPSHOT'
|
||
|
compile 'ch.dissem.jabit:jabit-security-bouncy:0.2.1-SNAPSHOT'
|
||
|
|
||
|
compile 'com.h2database:h2:1.4.187'
|
||
|
|
||
|
providedRuntime("org.springframework.boot:spring-boot-starter-tomcat")
|
||
|
testCompile("org.springframework.boot:spring-boot-starter-test")
|
||
|
}
|
||
|
|
||
|
|
||
|
eclipse {
|
||
|
classpath {
|
||
|
containers.remove('org.eclipse.jdt.launching.JRE_CONTAINER')
|
||
|
containers 'org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
task wrapper(type: Wrapper) {
|
||
|
gradleVersion = '2.3'
|
||
|
}
|