mirror of
https://github.com/corda/corda.git
synced 2024-12-19 13:08:04 +00:00
03967742e4
* Modify DJVM CLI so that it runs as executable JAR. * Package DJVM CLI as a distributable ZIP. * Add djvm.bat file for Windows.
92 lines
2.5 KiB
Groovy
92 lines
2.5 KiB
Groovy
plugins {
|
|
id 'com.github.johnrengelman.shadow'
|
|
id 'net.corda.plugins.publish-utils'
|
|
id 'com.jfrog.artifactory'
|
|
id 'idea'
|
|
}
|
|
|
|
description 'Corda deterministic JVM sandbox'
|
|
|
|
ext {
|
|
// Shaded version of ASM to avoid conflict with root project.
|
|
asm_version = '6.2.1'
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url "$artifactory_contextUrl/corda-dev"
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
testImplementation.extendsFrom shadow
|
|
jdkRt.resolutionStrategy {
|
|
// Always check the repository for a newer SNAPSHOT.
|
|
cacheChangingModulesFor 0, 'seconds'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
shadow "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
shadow "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
shadow "org.slf4j:slf4j-api:$slf4j_version"
|
|
|
|
// ASM: byte code manipulation library
|
|
implementation "org.ow2.asm:asm:$asm_version"
|
|
implementation "org.ow2.asm:asm-commons:$asm_version"
|
|
|
|
// ClassGraph: classpath scanning
|
|
shadow "io.github.classgraph:classgraph:$class_graph_version"
|
|
|
|
// Test utilities
|
|
testImplementation "junit:junit:$junit_version"
|
|
testImplementation "org.assertj:assertj-core:$assertj_version"
|
|
testImplementation "org.apache.logging.log4j:log4j-slf4j-impl:$log4j_version"
|
|
jdkRt "net.corda:deterministic-rt:latest.integration"
|
|
}
|
|
|
|
jar.enabled = false
|
|
|
|
shadowJar {
|
|
baseName 'corda-djvm'
|
|
classifier ''
|
|
relocate 'org.objectweb.asm', 'djvm.org.objectweb.asm'
|
|
|
|
// These particular classes are only needed to "bootstrap"
|
|
// the compilation of the other sandbox classes. At runtime,
|
|
// we will generate better versions from deterministic-rt.jar.
|
|
exclude 'sandbox/java/lang/Appendable.class'
|
|
exclude 'sandbox/java/lang/CharSequence.class'
|
|
exclude 'sandbox/java/lang/Character\$Subset.class'
|
|
exclude 'sandbox/java/lang/Character\$Unicode*.class'
|
|
exclude 'sandbox/java/lang/Comparable.class'
|
|
exclude 'sandbox/java/lang/Enum.class'
|
|
exclude 'sandbox/java/lang/Iterable.class'
|
|
exclude 'sandbox/java/lang/StackTraceElement.class'
|
|
exclude 'sandbox/java/lang/StringBuffer.class'
|
|
exclude 'sandbox/java/lang/StringBuilder.class'
|
|
exclude 'sandbox/java/nio/**'
|
|
exclude 'sandbox/java/util/**'
|
|
}
|
|
assemble.dependsOn shadowJar
|
|
|
|
tasks.withType(Test) {
|
|
systemProperty 'deterministic-rt.path', configurations.jdkRt.asPath
|
|
}
|
|
|
|
artifacts {
|
|
publish shadowJar
|
|
}
|
|
|
|
publish {
|
|
dependenciesFrom configurations.shadow
|
|
name shadowJar.baseName
|
|
}
|
|
|
|
idea {
|
|
module {
|
|
downloadJavadoc = true
|
|
downloadSources = true
|
|
}
|
|
}
|