Thanks Peter …I have not used nested tasks. I have created two tasks: one to delete and another to copy jar from projects target directory to projects build/lib directory. It worked.
But, how to do the same thing in a gradle custom plugin? I have written the same functionality as a custom gradle plugin:
project.task('buildProject', description: 'Verify project, release, and update version to next.', group: BUILD_GROUP, type: GradleBuild) {
startParameter = project.getGradle().startParameter.newInstance()
tasks = [
'build',
//
0. (This Plugin) Initializes the corresponding SCM plugin (Git/Bazaar/Svn/Mercurial).
'buildDir'
//
1. (SCM Plugin) Check to see if source needs to be checked in.
//'rename',
]
}
project.task('buildDir', group: BUILD_GROUP,
description: 'buildDir') << this.&buildDir
void buildDir(){
def directory = new File(subProject.getName(), 'build/libs')
directory.deleteDir()
def source = null
try{
source = new File(subProject.getName(), "target").list(new FileFilter()).getAt(0)
}catch(Exception e) {
throw new GradleException("Build Plugin, build is not successful")
}
def a = new File(subProject.getName()+ "/target",source.toString())
def destination = new File(subProject.getName() + "/build/libs")
println destination.absolutePath
destination.mkdir()
a.renameTo(new File(destination, subProject.getName() + "-" + subProject.getVersion() + ".jar"));
}
}
I am trying to do the below thing in the custom gradle plugin. I have tried in the build.gradle and it worked fine by changing the type to Sync. I wanted to do the same in a custom gradle plugin. Can you please let me know how to handle this in cutom gradle plugin?
Just do it like you did it for the ‘buildProject’ task. If you are having troubles with this, it’s worthwhile to step back and study the source code of some other plugins before writing your own.
I tried the below code, but it is not executing the meethod, if i add as type:sync.If i remove that, it works. import org.gradle.api.tasks.Sync
project.task('rename', group: BUILD_GROUP,
description: 'Initializes the SCM plugin (based on hidden directories in your project
any idea?s directory)',type: Sync) <<this.&deleteBuildDir
The above method is executed before it executes the ‘build’ task. I have added dependsOn . This happens only if i set the type as Sync. I use the command:
I have grouped two tasks and then trying to execute one by one similar to the gradle release plugin https://github.com/townsfolk/gradle-release. But when i set to sync, it executes first before doing the build task.