应用Maven Gradle插件

时间:2015-11-04 09:23:35

标签: android maven gradle

很高兴有Maven Gradle插件,但文档可能会好很多。我想知道的是如何从Maven插件中调用下面的整个gradle脚本:

% ./c.sh -a
OK
% 

所以上面的那些东西,我想成为gradle的外在任务?换句话说,只执行整个darn脚本?怎么用它来做gradle清洁?怎么样做

 <plugin>
            <groupId>org.fortasoft</groupId>
            <artifactId>gradle-maven-plugin</artifactId>
            <version>1.0.5</version>
            <configuration>
                <tasks>
                <!-- this would effectively call "gradle doSomething" -->
                <task>doSomething</task>
                </tasks>
            </configuration>
            <executions>
                 <execution>
                 <!-- You can bind this to any phase you like -->
                    <phase>compile</phase>
                    <goals>
                 <!-- goal must be "invoke" -->
                        <goal>invoke</goal>
                    </goals>
                </execution>
             </executions>
    </plugin>

我需要一个接一个的任务吗?插件是否按顺序支持多个任务?我不清楚。

  gradle clean build

0 个答案:

没有答案