使用maven-antrun-plugin
我能够将蚂蚁任务附加到maven阶段。
我正在使用maven程序集插件而不将其附加到任何阶段:脚本在需要时运行命令mvn assembly:single
或mvn assembly:assembly
。
有没有办法只在运行mvn assembly:single
时执行ant任务?
PS:这个问题与Extract subset of repository with maven assembly有关。由于我无法对汇编插件生成的存储库进行过滤,因此我想创建一个ant任务来对生成的存储库执行操作
答案 0 :(得分:1)
您无法将插件绑定到另一个插件目标,您只能将插件执行绑定到maven定义的阶段。
See there : Maven – Guide to Configuring Plug-ins, Configuring Build Plugins。
Introduction to Maven Lifecycle Reference或Maven Core Lifecycle Reference。
否则,您只能运行<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script>
$.ajax({
url:"https://www.kimonolabs.com/api//////?apikey=////////////",
crossDomain: true,
dataType: "jsonp",
success: function (response) {
//Do something with the response
var collection = response.results.collection2;
$(".titre-article").html(collection.Titre.text);
},
error: function (xhr, status) {
//handle errors
}
});
</script>
而不是仅限mvn assembly:single
。