mirror of
https://github.com/corda/corda.git
synced 2024-12-19 21:17:58 +00:00
ENT-11073 Checkpoint agent: update java assist version. (#7554)
This commit is contained in:
parent
60bcc99154
commit
5c32d3dec4
@ -124,6 +124,8 @@ buildscript {
|
|||||||
ext.commons_configuration2_version = constants.getProperty("commonsConfiguration2Version")
|
ext.commons_configuration2_version = constants.getProperty("commonsConfiguration2Version")
|
||||||
ext.commons_text_version = constants.getProperty("commonsTextVersion")
|
ext.commons_text_version = constants.getProperty("commonsTextVersion")
|
||||||
ext.snake_yaml_version = constants.getProperty("snakeYamlVersion")
|
ext.snake_yaml_version = constants.getProperty("snakeYamlVersion")
|
||||||
|
ext.javaassist_version = constants.getProperty("javaassistVersion")
|
||||||
|
|
||||||
if (JavaVersion.current().isJava8()) {
|
if (JavaVersion.current().isJava8()) {
|
||||||
ext.fontawesomefx_commons_version = constants.getProperty("fontawesomefxCommonsJava8Version")
|
ext.fontawesomefx_commons_version = constants.getProperty("fontawesomefxCommonsJava8Version")
|
||||||
ext.fontawesomefx_fontawesome_version = constants.getProperty("fontawesomefxFontawesomeJava8Version")
|
ext.fontawesomefx_fontawesome_version = constants.getProperty("fontawesomefxFontawesomeJava8Version")
|
||||||
|
@ -106,3 +106,4 @@ fontawesomefxFontawesomeJava8Version=4.7.0-5
|
|||||||
# FontAwesomeFX for a more recent version of the Java Runtime (class file version 55.0)
|
# FontAwesomeFX for a more recent version of the Java Runtime (class file version 55.0)
|
||||||
fontawesomefxCommonsVersion=11.0
|
fontawesomefxCommonsVersion=11.0
|
||||||
fontawesomefxFontawesomeVersion=4.7.0-11
|
fontawesomefxFontawesomeVersion=4.7.0-11
|
||||||
|
javaassistVersion=3.27.0-GA
|
||||||
|
@ -1,7 +1,3 @@
|
|||||||
ext {
|
|
||||||
javaassist_version = "3.12.1.GA"
|
|
||||||
}
|
|
||||||
|
|
||||||
apply plugin: 'kotlin'
|
apply plugin: 'kotlin'
|
||||||
apply plugin: 'idea'
|
apply plugin: 'idea'
|
||||||
|
|
||||||
@ -10,7 +6,7 @@ description 'A javaagent to allow hooking into the instrumentation by Quasar'
|
|||||||
dependencies {
|
dependencies {
|
||||||
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
compile "javassist:javassist:$javaassist_version"
|
compile "org.javassist:javassist:$javaassist_version"
|
||||||
}
|
}
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
|
@ -1,28 +1,3 @@
|
|||||||
buildscript {
|
|
||||||
// For sharing constants between builds
|
|
||||||
Properties constants = new Properties()
|
|
||||||
file("$projectDir/../../constants.properties").withInputStream { constants.load(it) }
|
|
||||||
|
|
||||||
ext.kotlin_version = constants.getProperty("kotlinVersion")
|
|
||||||
ext.javaassist_version = "3.12.1.GA"
|
|
||||||
|
|
||||||
repositories {
|
|
||||||
mavenLocal()
|
|
||||||
mavenCentral()
|
|
||||||
jcenter()
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
|
||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
repositories {
|
|
||||||
mavenLocal()
|
|
||||||
mavenCentral()
|
|
||||||
jcenter()
|
|
||||||
}
|
|
||||||
|
|
||||||
apply plugin: 'kotlin'
|
apply plugin: 'kotlin'
|
||||||
apply plugin: 'idea'
|
apply plugin: 'idea'
|
||||||
apply plugin: 'net.corda.plugins.publish-utils'
|
apply plugin: 'net.corda.plugins.publish-utils'
|
||||||
@ -33,7 +8,7 @@ description 'A javaagent to allow hooking into Kryo checkpoints'
|
|||||||
dependencies {
|
dependencies {
|
||||||
compileOnly "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
compileOnly "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
compileOnly "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
compileOnly "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
compileOnly "javassist:javassist:$javaassist_version"
|
compileOnly "org.javassist:javassist:$javaassist_version"
|
||||||
compileOnly "com.esotericsoftware:kryo:$kryo_version"
|
compileOnly "com.esotericsoftware:kryo:$kryo_version"
|
||||||
compileOnly "co.paralleluniverse:quasar-core:$quasar_version"
|
compileOnly "co.paralleluniverse:quasar-core:$quasar_version"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user