-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnbactions.xml
More file actions
26 lines (26 loc) · 842 Bytes
/
nbactions.xml
File metadata and controls
26 lines (26 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="UTF-8"?>
<!-- netbeans 定制 操作命令 -->
<actions>
<action>
<actionName>CUSTOM-导出依赖</actionName>
<displayName>导出依赖</displayName>
<goals>
<goal>dependency:tree</goal>
<!--dependency:resolve-->
<!--dependency:tree-->
<!--dependency:list-->
<!--<goal>-l=/tmp/pom.txt</goal>-->
</goals>
<!--<properties>
<exec.executable>sh</exec.executable>
<exec.args>/tmp/pom.sh</exec.args>
</properties>-->
</action>
<action>
<actionName>CUSTOM-分析依赖(不包括注解)</actionName>
<displayName>分析依赖(不包括注解)</displayName>
<goals>
<goal>dependency:analyze</goal>
</goals>
</action>
</actions>