mulesoft-labs / mule-gradle-plugin

Plugin for building mule apps with the gradle build system.
Apache License 2.0
24 stars 14 forks source link

Remove codehaus repository #59

Closed juancavallotti closed 9 years ago

juancavallotti commented 9 years ago

Codehaus has taken down its repository so the following is no longer valid:

 maven {
    url 'http://dist.codehaus.org/mule/dependencies/maven2/'
}

This needs to be removed and a hot fix published for versions 1.2.x and 1.1.x

juancavallotti commented 9 years ago

Released hot fix versions:

1.1.x: https://repository.mulesoft.org/nexus/content/repositories/public/org/mulesoft/build/mule-gradle-plugin/1.1.2/ 1.2.x: https://repository.mulesoft.org/nexus/content/repositories/public/org/mulesoft/build/mule-gradle-plugin/1.2.1/

juancavallotti commented 9 years ago

Repository that replaces codehaus is:

https://repository.mulesoft.org/nexus/content/repositories/public/

To work with 1.1.x and 1.2.x the following repo should be added:

repositories {
    maven {
        url 'https://repository.mulesoft.org/nexus/content/repositories/public/'
    }
}