github.com/kaleido-io/firefly@v0.0.0-20210622132723-8b4b6aacb971/cordapp_kat/kat-contracts/build.gradle (about)

     1  plugins {
     2      // Apply the java-library plugin to add support for Java Library
     3      id 'java-library'
     4  }
     5  dependencies {
     6      // these dependencies will be included in the contract jar
     7      cordaRuntime 'net.corda:corda:4.4'
     8  
     9      // these dependencies will NOT be included in the contract jar
    10      cordaCompile 'net.corda:corda-core:4.4'
    11      // This dependency is used internally, and not exposed to consumers on their own compile classpath.
    12      implementation 'com.google.guava:guava:26.0-jre'
    13  }
    14  
    15  cordapp {
    16      targetPlatformVersion 4
    17      minimumPlatformVersion 4
    18      contract {
    19          name "Kat Contract"
    20          vendor "Kaleido Open Source"
    21          licence "Apache License, Version 2.0"
    22          versionId 1
    23      }
    24  }