Add extra version pinning for spring.boot gradle plug-in

This commit is contained in:
Christian Sailer 2017-11-06 14:34:09 +00:00
parent 68481765e1
commit 1b332e2cb3

View File

@ -10,6 +10,14 @@ buildscript {
}
}
// Spring Boot plugin adds a numerous hardcoded dependencies in the version much lower then Corda expects
// causing the problems in runtime. Those can be changed by manipulating above properties
// See https://github.com/spring-gradle-plugins/dependency-management-plugin/blob/master/README.md#changing-the-value-of-a-version-property
// This has to be repeated here as otherwise the order of files does matter
ext['artemis.version'] = "$artemis_version"
ext['hibernate.version'] = "$hibernate_version"
apply plugin: 'java'
apply plugin: 'kotlin'
apply plugin: 'idea'