mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
30 lines
920 B
Groovy
30 lines
920 B
Groovy
ext {
|
|
javaassist_version = "3.12.1.GA"
|
|
}
|
|
|
|
apply plugin: 'kotlin'
|
|
apply plugin: 'idea'
|
|
|
|
description 'A javaagent to allow hooking into the instrumentation by Quasar'
|
|
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
compile "javassist:javassist:$javaassist_version"
|
|
}
|
|
|
|
jar {
|
|
archiveName = "${project.name}.jar"
|
|
manifest {
|
|
attributes(
|
|
'Premain-Class': 'net.corda.quasarhook.QuasarInstrumentationHookAgent',
|
|
'Can-Redefine-Classes': 'true',
|
|
'Can-Retransform-Classes': 'true',
|
|
'Can-Set-Native-Method-Prefix': 'true',
|
|
'Implementation-Title': "QuasarHook",
|
|
'Implementation-Version': rootProject.version
|
|
)
|
|
}
|
|
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
|
|
}
|