# gradle-maven-plugin **Repository Path**: mirrors_thingsboard/gradle-maven-plugin ## Basic Information - **Project Name**: gradle-maven-plugin - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2020-09-26 - **Last Updated**: 2023-08-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README This is fork of **LendingClub/gradle-maven-plugin** with basic maintenance. # gradle-maven-plugin [![Circle CI](https://circleci.com/gh/LendingClub/gradle-maven-plugin.svg?style=svg)](https://circleci.com/gh/LendingClub/gradle-maven-plugin) This is a maven plugin that makes it easy to invoke Gradle tasks from within Maven. # Objective Gradle is an awesome general-purpose tool. If your project/organization is committed to maven, switching to gradle may not be a practical option. The plugin is conceptually similar to the maven-antrun-plugin, which allows ant to be invoked from maven. Now instead of using Ant to perform ad-hoc tasks from within Maven, you can use Groovy/Gradle instead! # Usage The gradle-maven-plugin is now in Maven Central, so there is no need to declare a custom repository. To use the plugin, simply declare the plugin and bind it to the maven lifecycle phase of your choice: ```xml org.thingsboard gradle-maven-plugin 1.0.9 doSomething compile invoke ``` Now when you run maven, gradle will be invoked and execute the "doSomething" task defined in `build.gradle`. Obviously you can change the task(s) to suit your needs. In this example, the gradle invocation will happen during the maven "compile" phase, but this can be easily changed by changing the <phase> element value. ## Options These options can be given in the <configuration> element:
optionrequireddescriptionexample
taskyes (or tasks) gradle task to be invoked
<task>myTask</task>
tasksyes (or task) gradle tasks to be invoked
<tasks>
<task>task1</task>
<task>task2</task>
</tasks>
gradleVersionnoversion of gradle to use
<gradleVersion>1.6</gradleVersion>
gradleProjectDirectorynopath to the location of your build.gradle
<gradleProjectDirectory>
${project.basedir}/another/path
</gradleProjectDirectory>
javaHomenogive and explicit path to a JAVA_HOME
<javaHome> /my/path/to/jdk </javaHome>
argsnopass argument to gradle
<args>
<arg>-q</arg>
</args>
jvmArgsnopass JVM arg to gradle
<jvmArgs>
<jvmArg>-XX:MaxPermSize=128m</jvmArg>
<jvmArg>-Xmx256m</jvmArg>
</jvmArgs>
# Plugin Testing Here is some information on maven plugin testing. This project is currently using the maven-invoker-plugin for testing. * http://maven.apache.org/plugin-developers/plugin-testing.html * http://maven.apache.org/plugins/maven-invoker-plugin/usage.html