I’ve tried to build application with gradle 3.0. And build failed with message:
Failed to apply plugin [id ‘moe’]
The ‘moe’ plugin requires Gradle version 2.5 or higher! Current version is 3.0.
I use
buildscript {
repositories {
jcenter()
}
dependencies {
classpath group: 'org.multi-os-engine', name: 'moe-gradle', version: '1.1.+'
}
}
apply plugin: 'moe'
So, Does gradle 3 supported? Is there workaround to avoid gradle version check?
liliomk
(Kristóf Liliom - Migeran)
August 29, 2016, 3:40pm
2
Dear zufarfakhurtdinov,
This is a bug and will be fixed soon, however Gradle 3.0 is currently not supported officially.
Ok, thank you. I’m waiting for fix!
liliomk
(Kristóf Liliom - Migeran)
August 29, 2016, 4:04pm
4
Dear zufarfakhurtdinov,
The fix is published, you may need to invoke ./gradlew --refresh-dependencies
before using your project, otherwise Gradle might not see the new MOE plugin.
Good news! It’s work! Thank you!