mirror of
https://github.com/corda/corda.git
synced 2024-12-21 22:07:55 +00:00
6dd33fb8f7
Major changes due to JDK 17: 1. JDK17 JCE Provider now has built-in support for eddsas, corda uses the bouncycastle (i2p) implementation. This PR removes the conflicting algorithms from the built-in JCE provider. 2. JavaScript scripting has been removed from the JDK, the corda log4j config was using scripting to conditionally output additional diagnostic info if the MDC was populated. This PR has removed the scripting. 3. The artifactory plug-ins used are now deprecated, this PR has removed them and uses the same code as Corda 5 for publishing to artifactory. 4. Javadoc generation has been modified to use the latest dokka plug-ins. 5. Gradle 7.6 has implemented an incredibly annoying change where transitive dependencies are not put on the compile classpath, so that they have to be explicitly added as dependencies to projects. 6. Mockito has been updated, which sadly meant that quite a few source files have to changes to use the new (org.mockito.kotlin) package name. This makes this PR appear much larger than it is. 7. A number of tests have been marked as ignored to get a green, broadly they fall into 3 classes. The first is related to crypto keypair tests, it appears some logic in the JDK prefers to use the SunJCE implementation and we prefer to use bouncycastle. I believe this issue can be fixed with better test setup. The second group is related to our use of a method called "uncheckedCast(..)", the purpose of this method was to get rid of the annoying unchecked cast compiler warning that would otherwise exist. It looks like the Kotlin 1.9 compiler type inference differs and at runtime sometimes the type it infers is "Void" which causes an exception at runtime. The simplest solution is to use an explicit cast instead of unchecked cast, Corda 5 have removed unchecked cast from their codebase. The third class are a number of ActiveMQ tests which appear to have a memory leak somewhere.
127 lines
3.8 KiB
Groovy
127 lines
3.8 KiB
Groovy
apply plugin: 'net.corda.plugins.cordapp'
|
|
|
|
def javaHome = System.getProperty('java.home')
|
|
def shrinkJar = file("$buildDir/libs/${project.name}-${project.version}-tiny.jar")
|
|
|
|
import java.security.NoSuchAlgorithmException
|
|
import java.security.MessageDigest
|
|
|
|
static String sha256(File jarFile) throws FileNotFoundException, NoSuchAlgorithmException {
|
|
InputStream input = new FileInputStream(jarFile)
|
|
try {
|
|
MessageDigest digest = MessageDigest.getInstance("SHA-256")
|
|
byte[] buffer = new byte[8192]
|
|
int bytesRead
|
|
while ((bytesRead = input.read(buffer)) != -1) {
|
|
digest.update(buffer, 0, bytesRead)
|
|
}
|
|
return digest.digest().encodeHex().toString()
|
|
} finally {
|
|
input.close()
|
|
}
|
|
}
|
|
|
|
cordapp {
|
|
targetPlatformVersion = corda_platform_version.toInteger()
|
|
minimumPlatformVersion 1
|
|
signing {
|
|
// Cordapp is signed after the "shrink" task.
|
|
enabled false
|
|
}
|
|
sealing {
|
|
// Cannot seal JAR because other module also defines classes in the package net.corda.vega.analytics
|
|
enabled false
|
|
}
|
|
contract {
|
|
name "net/corda/vega/contracts"
|
|
versionId 1
|
|
vendor "R3"
|
|
licence "Open Source (Apache 2)"
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
shrinkArtifacts
|
|
}
|
|
|
|
dependencies {
|
|
// The SIMM demo CorDapp depends upon Cash CorDapp features
|
|
cordapp project(':finance:contracts')
|
|
|
|
// Corda integration dependencies
|
|
cordaProvided project(':core')
|
|
|
|
|
|
// Cordapp dependencies
|
|
// Specify your cordapp's dependencies below, including dependent cordapps
|
|
implementation "com.opengamma.strata:strata-product:$strata_version"
|
|
implementation "com.opengamma.strata:strata-market:$strata_version"
|
|
}
|
|
|
|
def cordappDependencies = file("${sourceSets['main'].output.resourcesDir}/META-INF/Cordapp-Dependencies")
|
|
configurations.cordapp.canBeResolved = true
|
|
task generateDependencies {
|
|
dependsOn project(':finance:contracts').tasks.jar
|
|
inputs.files(configurations.cordapp)
|
|
outputs.files(cordappDependencies)
|
|
doLast {
|
|
cordappDependencies.newWriter().withWriter { writer ->
|
|
configurations.cordapp.forEach { cordapp ->
|
|
writer << sha256(cordapp) << System.lineSeparator()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
processResources.finalizedBy generateDependencies
|
|
|
|
jar {
|
|
classifier = 'fat'
|
|
}
|
|
|
|
import proguard.gradle.ProGuardTask
|
|
task shrink(type: ProGuardTask) {
|
|
injars jar
|
|
outjars shrinkJar
|
|
|
|
libraryjars "$javaHome/jmods"
|
|
configurations.runtimeClasspath.forEach {
|
|
libraryjars it.path, filter: '!META-INF/versions/**'
|
|
}
|
|
|
|
dontwarn 'afu.org.checkerframework.**'
|
|
dontwarn 'co.paralleluniverse.**'
|
|
dontwarn 'org.checkerframework.**'
|
|
dontwarn 'org.joda.**'
|
|
dontnote
|
|
|
|
// We need to preserve our CorDapp's own directory structure so that Corda
|
|
// can find the contract classes.
|
|
keepdirectories 'net/corda/**'
|
|
keepattributes '*'
|
|
dontobfuscate
|
|
dontoptimize
|
|
verbose
|
|
|
|
// These are our CorDapp classes, so don't change these.
|
|
keep 'class net.corda.vega.** { *; }', includedescriptorclasses:true
|
|
|
|
// Until CorDapps are isolated from each other, we need to ensure that the
|
|
// versions of the classes that this CorDapp needs are still usable by other
|
|
// CorDapps. Unfortunately, this means that we cannot shrink them as much as
|
|
// we'd like to.
|
|
keepclassmembers 'class com.opengamma.strata.** { *; }', includedescriptorclasses:true
|
|
keepclassmembers 'class com.google.** { *; }', includedescriptorclasses:true
|
|
keepclassmembers 'class org.joda.** { *; }', includedescriptorclasses:true
|
|
}
|
|
|
|
task sign(type: net.corda.plugins.SignJar) {
|
|
inputJars shrink
|
|
}
|
|
|
|
jar.finalizedBy shrink
|
|
shrink.finalizedBy sign
|
|
|
|
artifacts {
|
|
// shrinkArtifacts file: sign.outputJars.singleFile, name: project.name, type: 'jar', extension: 'jar', classifier: 'tiny', builtBy: sign
|
|
}
|