diff options
| author | hyx <[email protected]> | 2021-08-06 17:32:35 +0800 |
|---|---|---|
| committer | hyx <[email protected]> | 2021-08-06 17:32:35 +0800 |
| commit | 309921826ecbd70bfaad2fcbe2f89e296582c558 (patch) | |
| tree | 7014bf7a0a9ee9f9b31c486273075966b0f99821 | |
| parent | dbed910b9cb1871316b11b9ae76251112c8b001e (diff) | |
| parent | 5173074b684196009a07563a24e9a3da5dad8eb6 (diff) | |
Merge branch 'dev' of https://git.mesalab.cn/nezha/nz-talon.git into dev
| -rw-r--r-- | pom.xml | 34 |
1 files changed, 34 insertions, 0 deletions
@@ -73,6 +73,40 @@ </configuration> </plugin> + + <!-- 跳过单元测试 --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skipTests>true</skipTests> + </configuration> + </plugin> + + <!-- 添加 XJar Maven 插件 --> + <plugin> + <groupId>com.mesalab.xjar-maven-plugin</groupId> + <artifactId>mesalab-xjar-maven-plugin</artifactId> + <version>1.0.0</version> + <executions> + <execution> + <goals> + <goal>build</goal> + </goals> + <phase>package</phase> + + <configuration> +<!-- <password>111111</password>--> + <!-- <includes>--> + <!-- <include>cn/nis/ntc/**</include>--> + <!-- </includes>--> + <!-- <excludes>--> + <!-- <exclude>cn/nis/ntc/api/config/Swagger2Configuration.class</exclude>--> + <!-- </excludes>--> + </configuration> + </execution> + </executions> + </plugin> </plugins> </build> |
