mirror of
https://github.com/corda/corda.git
synced 2024-12-24 07:06:44 +00:00
ES-2371: Consume H2 DB snapshot version
This commit is contained in:
parent
07a4ac0db8
commit
835e95c222
14
build.gradle
14
build.gradle
@ -438,6 +438,20 @@ allprojects {
|
|||||||
includeGroup 'com.github.detro'
|
includeGroup 'com.github.detro'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// required until h2database 2.2.229 is released
|
||||||
|
maven {
|
||||||
|
url "${artifactory_contextUrl}/corda-dependencies-dev"
|
||||||
|
authentication {
|
||||||
|
basic(BasicAuthentication)
|
||||||
|
}
|
||||||
|
credentials {
|
||||||
|
username = findProperty('cordaArtifactoryUsername') ?: System.getenv('CORDA_ARTIFACTORY_USERNAME')
|
||||||
|
password = findProperty('cordaArtifactoryPassword') ?: System.getenv('CORDA_ARTIFACTORY_PASSWORD')
|
||||||
|
}
|
||||||
|
content {
|
||||||
|
includeGroupByRegex 'com\\.h2database(\\..*)?'
|
||||||
|
}
|
||||||
|
}
|
||||||
maven {
|
maven {
|
||||||
url "${publicArtifactURL}/corda-dev"
|
url "${publicArtifactURL}/corda-dev"
|
||||||
content {
|
content {
|
||||||
|
@ -78,7 +78,7 @@ joptSimpleVersion=5.0.2
|
|||||||
jansiVersion=1.18
|
jansiVersion=1.18
|
||||||
hibernateVersion=5.6.14.Final
|
hibernateVersion=5.6.14.Final
|
||||||
# h2Version - Update docs if renamed or removed.
|
# h2Version - Update docs if renamed or removed.
|
||||||
h2Version=2.2.224
|
h2Version=2.2.229-SNAPSHOT
|
||||||
rxjavaVersion=1.3.8
|
rxjavaVersion=1.3.8
|
||||||
dokkaVersion=0.10.1
|
dokkaVersion=0.10.1
|
||||||
eddsaVersion=0.3.0
|
eddsaVersion=0.3.0
|
||||||
|
Loading…
Reference in New Issue
Block a user