Closed chanseokoh closed 4 years ago
Fixes #35.
Kotlin users need to specify the org.gradle.api.Action type for pluginExtension.configuration.
org.gradle.api.Action
pluginExtension.configuration
pluginExtension { implementation = "com.google.cloud.tools.jib.gradle.extension.layerfilter.JibLayerFilterExtension" configuration(Action<com.google.cloud.tools.jib.gradle.extension.layerfilter.Configuration> { filters { filter {
This is not worse than Maven, where they have to do a similar thing:
<pluginExtension> <implementation>com.google.cloud.tools.jib.maven.extension.ownership.JibOwnershipExtension</implementation> <configuration implementation="com.google.cloud.tools.jib.maven.extension.ownership.Configuration"> <rules> <rule>
Fixes #35.
Kotlin users need to specify the
org.gradle.api.Action
type forpluginExtension.configuration
.This is not worse than Maven, where they have to do a similar thing: