mirror of
https://github.com/corda/corda.git
synced 2024-12-20 05:28:21 +00:00
78bc8e3383
* ENT-11343: Dont instrument files starting with jdk as well now. * ENT-11343: Keep detekt happy.
50 lines
1.6 KiB
Groovy
50 lines
1.6 KiB
Groovy
apply plugin: 'org.jetbrains.kotlin.jvm'
|
|
apply plugin: 'idea'
|
|
apply plugin: 'corda.common-publishing'
|
|
|
|
description 'A javaagent to allow hooking into Kryo checkpoints'
|
|
|
|
dependencies {
|
|
compileOnly "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
implementation "org.javassist:javassist:$javaassist_version"
|
|
compileOnly "com.esotericsoftware:kryo:$kryo_version"
|
|
compileOnly "co.paralleluniverse:quasar-core:$quasar_version"
|
|
|
|
implementation (project(':core')) {
|
|
transitive = false
|
|
}
|
|
|
|
// Unit testing helpers.
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:${junit_jupiter_version}"
|
|
testImplementation "junit:junit:$junit_version"
|
|
|
|
// SLF4J: commons-logging bindings for a SLF4J back end
|
|
implementation "org.slf4j:slf4j-api:$slf4j_version"
|
|
}
|
|
|
|
configurations.implementation.canBeResolved = true
|
|
jar {
|
|
archiveBaseName = "${project.name}"
|
|
manifest {
|
|
attributes(
|
|
'Premain-Class': 'net.corda.tools.CheckpointAgent',
|
|
'Can-Redefine-Classes': 'true',
|
|
'Can-Retransform-Classes': 'true',
|
|
'Can-Set-Native-Method-Prefix': 'true',
|
|
'Implementation-Title': "CheckpointAgent",
|
|
'Implementation-Version': rootProject.version
|
|
)
|
|
}
|
|
from { configurations.implementation.collect { it.isDirectory() ? it : zipTree(it) } }
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
maven(MavenPublication) {
|
|
artifactId 'corda-tools-checkpoint-agent'
|
|
from components.java
|
|
}
|
|
}
|
|
}
|