Could not create plugin of type 'AwsecrPlugin'.

Issue #14 resolved
Former user created an issue

Getting error:

Failed to apply plugin [id 'com.patdouble.awsecr'] Could not create plugin of type 'AwsecrPlugin'. > com/bmuschko/gradle/docker/tasks/AbstractReactiveStreamsTask

Using gradle 5.0... buildscript { repositories { maven { url 'http://nexus.prod.xxxx.com/content/repositories/releases' } maven { url 'http://nexus.prod.xxxx.com/content/repositories/snapshots' } maven { url 'https://plugins.gradle.org/m2/' }
}

configurations.all {
    // check for updates every build (if we are using snapshot with the same version)
    resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}

dependencies {
    classpath "com.bmuschko:gradle-docker-plugin:4.2.0"
    classpath "gradle.plugin.com.patdouble:gradle-aws-ecr-plugin:0.4.0"
}

} apply plugin: 'com.patdouble.awsecr'

Comments (4)

  1. Jens Kübler

    Since bmuschko plugin version 4.0.0 this class disappeared. Revert your dependency to 3.6.2 and things should work again. The code needs to be updated here to reflect the change.

  2. Log in to comment