ATEST-99:

- improving version for dependency management
This commit is contained in:
Zellweger Christof Ralf
2015-07-07 10:53:35 +02:00
parent 3157082262
commit 091824a796

View File

@ -1,24 +1,16 @@
version = '1.0.0'
buildscript {
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.4.RELEASE")
}
repositories {
jcenter()
}
dependencies { classpath(libraries.spring_boot_gradle_plugin) }
repositories { jcenter() }
}
apply plugin: 'spring-boot'
repositories {
jcenter()
}
repositories { jcenter() }
springBoot {
// when using spring loaded turn on noverify
noverify = true
}
springBoot { // when using spring loaded turn on noverify
noverify = true }
applicationDefaultJvmArgs = [
"-Dfile.encoding=UTF-8",
@ -32,20 +24,17 @@ applicationDefaultJvmArgs = [
dependencies {
compile (project(':ch.psi.daq.hazelcast'))
compile 'org.springframework.boot:spring-boot-starter-web:1.2.4.RELEASE'
compile 'com.google.code.gson:gson:2+'
compile 'org.apache.commons:commons-lang3:3.4'
compile libraries.spring_boot_starter_web
compile libraries.commons_lang
testCompile 'org.springframework.boot:spring-boot-starter-test:1.2.4.RELEASE'
testCompile 'org.skyscreamer:jsonassert:1.2.3'
testCompile 'com.jayway.jsonpath:json-path:2.0.0'
testCompile libraries.spring_boot_starter_test
testCompile libraries.jsonassert
testCompile libraries.jsonpath
}
uploadArchives {
repositories {
mavenDeployer {
pom.artifactId = 'rest'
}
mavenDeployer { pom.artifactId = 'rest' }
}
}