Quantcast
Channel: Gradle Forums - Latest posts
Viewing all articles
Browse latest Browse all 19850

Plugin project with samples in one repository

$
0
0

You can create tasks in the main build that wrap tasks in the composite build which you can then call from command line

Eg

task pluginPublishToMavenLocal {
   dependsOn gradle.includedBuild('plugin').task('foo:publishToMavenLocal') 
} 

Viewing all articles
Browse latest Browse all 19850

Trending Articles