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

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