Skip to content

Instantly share code, notes, and snippets.

View rgoomar's full-sized avatar

Rishi Goomar rgoomar

View GitHub Profile
./gradlew build --include-build /path/to/plugin-one --include-build /path/to/plugin-two
./gradlew build --include-build /path/to/plugin
./gradlew wrapper
./gradlew --version
task wrapper(type: Wrapper) {
gradleVersion = '3.1'
}
model {
tasks {
wrapper {
gradleVersion = '3.1'
}
}
}
./gradlew wrapper --gradle-version=3.1
// Put your plugin id and locally published version
plugins {
id 'your.plugin.id' version 'x.x.x'
}
pluginRepositories {
maven {
url 'file:///Users/YOUR_USERNAME/.m2/repository'
}
}
./gradlew publishToMavenLocal