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