mirror of
https://github.com/corda/corda.git
synced 2024-12-21 22:07:55 +00:00
54 lines
1.5 KiB
Groovy
54 lines
1.5 KiB
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'net.corda.plugins.publish-utils'
|
|
id 'com.jfrog.artifactory'
|
|
id 'idea'
|
|
}
|
|
apply from: "${rootProject.projectDir}/deterministic.gradle"
|
|
|
|
description 'Test utilities for deterministic contract verification'
|
|
|
|
configurations {
|
|
deterministicArtifacts
|
|
runtimeArtifacts.extendsFrom api
|
|
}
|
|
|
|
dependencies {
|
|
deterministicArtifacts project(path: ':serialization-deterministic', configuration: 'deterministicArtifacts')
|
|
deterministicArtifacts project(path: ':core-deterministic', configuration: 'deterministicArtifacts')
|
|
|
|
runtimeArtifacts project(':serialization')
|
|
runtimeArtifacts project(':core')
|
|
|
|
// Compile against the deterministic artifacts to ensure that we use only the deterministic API subset.
|
|
compileOnly configurations.deterministicArtifacts
|
|
api "junit:junit:$junit_version"
|
|
runtimeOnly "org.junit.vintage:junit-vintage-engine:$junit_vintage_version"
|
|
}
|
|
|
|
jar {
|
|
archiveBaseName = 'corda-deterministic-verifier'
|
|
}
|
|
|
|
artifacts {
|
|
deterministicArtifacts jar
|
|
runtimeArtifacts jar
|
|
publish jar
|
|
}
|
|
|
|
publish {
|
|
// Our published POM will contain dependencies on the non-deterministic Corda artifacts.
|
|
dependenciesFrom(configurations.runtimeArtifacts) {
|
|
defaultScope = 'compile'
|
|
}
|
|
name jar.archiveBaseName.get()
|
|
}
|
|
|
|
idea {
|
|
module {
|
|
if (project.hasProperty("deterministic_idea_sdk")) {
|
|
jdkName project.property("deterministic_idea_sdk") as String
|
|
}
|
|
}
|
|
}
|