net.corda.plugins.jar-filter
Owner: R3 Corda
Corda JAR Filter Plugin
https://github.com/corda/corda-gradle-plugins
Sources: https://github.com/corda/corda-gradle-plugins
Using the plugins DSL:
plugins {
id("net.corda.plugins.jar-filter") version "7.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.corda.plugins:jar-filter:7.0.3")
}
}
apply(plugin = "net.corda.plugins.jar-filter")
Using the plugins DSL:
plugins {
id "net.corda.plugins.jar-filter" version "7.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.corda.plugins:jar-filter:7.0.3"
}
}
apply plugin: "net.corda.plugins.jar-filter"