pom.xml 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.ydtech</groupId>
  7. <artifactId>insagent</artifactId>
  8. <version>0.0.2</version>
  9. <packaging>jar</packaging>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.5.14</version>
  14. <relativePath/>
  15. </parent>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <java.version>1.8</java.version>
  20. <druid.version>1.1.10</druid.version>
  21. <fastjson.version>1.2.58</fastjson.version>
  22. <kaptcha.version>0.0.9</kaptcha.version>
  23. <mapstruct.version>1.5.4.Final</mapstruct.version>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. <exclusions>
  30. <!-- <exclusion>-->
  31. <!-- <groupId>org.springframework.boot</groupId>-->
  32. <!-- <artifactId>spring-boot-starter-logging</artifactId>-->
  33. <!-- </exclusion>-->
  34. <!-- &lt;!&ndash; 打成war包,排除spring-boot-starter-web中的Tomcat&ndash;&gt;-->
  35. <!-- <exclusion>-->
  36. <!-- <groupId>org.springframework.boot</groupId>-->
  37. <!-- <artifactId>spring-boot-starter-tomcat</artifactId>-->
  38. <!-- </exclusion>-->
  39. </exclusions>
  40. </dependency>
  41. <!-- <dependency>-->
  42. <!-- <groupId>org.springframework.boot</groupId>-->
  43. <!-- <artifactId>spring-boot-starter-log4j</artifactId>-->
  44. <!-- <version>1.3.8.RELEASE</version>-->
  45. <!-- </dependency>-->
  46. <!-- <dependency>-->
  47. <!-- <groupId>org.springframework.boot</groupId>-->
  48. <!-- <artifactId>spring-boot-starter-tomcat</artifactId>-->
  49. <!-- &lt;!&ndash;打包的时候可以不用包进去,别的设施会提供。事实上该依赖理论上可以参与编译,测试,运行等周期。-->
  50. <!-- 相当于compile,但是打包阶段做了exclude操作&ndash;&gt;-->
  51. <!-- <scope>provided</scope>-->
  52. <!-- </dependency>-->
  53. <!--spring切面aop依赖-->
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-aop</artifactId>
  57. </dependency>
  58. <!--数据库相关-->
  59. <!--
  60. <dependency>
  61. <groupId>org.springframework</groupId>
  62. <artifactId>spring-jdbc</artifactId>
  63. <version>4.2.5.RELEASE</version>
  64. </dependency>
  65. -->
  66. <!--SpringBoot 使用 JDBCTemplate 引用下面这个包才会自动注入,不要引用上面按个-->
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-jdbc</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.github.drinkjava2</groupId>
  73. <artifactId>jdialects</artifactId>
  74. <version>1.0.7</version> <!--或Maven最新版-->
  75. </dependency>
  76. <!-- 加入p6spy -->
  77. <dependency>
  78. <groupId>p6spy</groupId>
  79. <artifactId>p6spy</artifactId>
  80. <version>3.8.5</version>
  81. </dependency>
  82. <!-- kaptcha -->
  83. <dependency>
  84. <groupId>com.github.axet</groupId>
  85. <artifactId>kaptcha</artifactId>
  86. <version>${kaptcha.version}</version>
  87. </dependency>
  88. <!-- mysql -->
  89. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  90. <dependency>
  91. <groupId>mysql</groupId>
  92. <artifactId>mysql-connector-java</artifactId>
  93. <scope>runtime</scope>
  94. </dependency>
  95. <!-- druid -->
  96. <!-- <dependency>-->
  97. <!-- <groupId>com.alibaba</groupId>-->
  98. <!-- <artifactId>druid-spring-boot-starter</artifactId>-->
  99. <!-- <version>${druid.version}</version>-->
  100. <!-- </dependency>-->
  101. <dependency>
  102. <groupId>com.alibaba</groupId>
  103. <artifactId>druid</artifactId>
  104. <version>1.1.10</version>
  105. </dependency>
  106. <!-- &lt;!&ndash; swagger &ndash;&gt;-->
  107. <!-- <dependency>-->
  108. <!-- <groupId>io.springfox</groupId>-->
  109. <!-- <artifactId>springfox-swagger2</artifactId>-->
  110. <!-- <version>${swagger.version}</version>-->
  111. <!-- <exclusions>-->
  112. <!-- <exclusion>-->
  113. <!-- <groupId>org.mapstruct</groupId>-->
  114. <!-- <artifactId>mapstruct</artifactId>-->
  115. <!-- </exclusion>-->
  116. <!-- </exclusions>-->
  117. <!-- </dependency>-->
  118. <!-- <dependency>-->
  119. <!-- <groupId>io.springfox</groupId>-->
  120. <!-- <artifactId>springfox-swagger-ui</artifactId>-->
  121. <!-- <version>${swagger.version}</version>-->
  122. <!-- </dependency>-->
  123. <!--引入Knife4j的官方start包,Swagger2基于Springfox2.10.5项目-->
  124. <dependency>
  125. <groupId>com.github.xiaoymin</groupId>
  126. <!--使用Swagger2-->
  127. <artifactId>knife4j-spring-boot-starter</artifactId>
  128. <version>2.0.9</version>
  129. <exclusions>
  130. <exclusion>
  131. <groupId>org.mapstruct</groupId>
  132. <artifactId>mapstruct</artifactId>
  133. </exclusion>
  134. </exclusions>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.springframework.plugin</groupId>
  138. <artifactId>spring-plugin-core</artifactId>
  139. <version>2.0.0.RELEASE</version>
  140. </dependency>
  141. <!-- <dependency>-->
  142. <!-- <groupId>org.springframework.plugin</groupId>-->
  143. <!-- <artifactId>spring-plugin-metadata</artifactId>-->
  144. <!-- <version>2.0.0.RELEASE</version>-->
  145. <!-- </dependency>-->
  146. <!-- fastjson -->
  147. <dependency>
  148. <groupId>com.alibaba</groupId>
  149. <artifactId>fastjson</artifactId>
  150. <version>${fastjson.version}</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>joda-time</groupId>
  154. <artifactId>joda-time</artifactId>
  155. <version>2.10.5</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>com.github.promeg</groupId>
  159. <artifactId>tinypinyin</artifactId>
  160. <version>2.0.3</version>
  161. </dependency>
  162. <!-- 爬虫开始 -->
  163. <!-- spider -->
  164. <dependency>
  165. <groupId>org.apache.httpcomponents</groupId>
  166. <artifactId>httpclient</artifactId>
  167. <version>4.5.6</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.apache.httpcomponents</groupId>
  171. <artifactId>httpcore</artifactId>
  172. <version>4.4.10</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>org.apache.httpcomponents</groupId>
  176. <artifactId>httpmime</artifactId>
  177. <version>4.5.6</version>
  178. </dependency>
  179. <!-- https://mvnrepository.com/artifact/redis.clients/jedis -->
  180. <dependency>
  181. <groupId>redis.clients</groupId>
  182. <artifactId>jedis</artifactId>
  183. <version>2.9.3</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>com.google.code.gson</groupId>
  187. <artifactId>gson</artifactId>
  188. <version>2.8.5</version>
  189. <scope>compile</scope>
  190. </dependency>
  191. <dependency>
  192. <groupId>com.jayway.jsonpath</groupId>
  193. <artifactId>json-path</artifactId>
  194. <version>2.4.0</version>
  195. </dependency>
  196. <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
  197. <dependency>
  198. <groupId>org.jsoup</groupId>
  199. <artifactId>jsoup</artifactId>
  200. <version>1.10.3</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>com.codeborne</groupId>
  204. <artifactId>selenide</artifactId>
  205. <version>4.7</version>
  206. <scope>test</scope>
  207. <exclusions>
  208. <exclusion>
  209. <groupId>org.seleniumhq.selenium</groupId>
  210. <artifactId>selenium</artifactId>
  211. </exclusion>
  212. <exclusion>
  213. <groupId>org.seleniumhq.selenium</groupId>
  214. <artifactId>selenium-support</artifactId>
  215. </exclusion>
  216. </exclusions>
  217. </dependency>
  218. <dependency>
  219. <groupId>org.seleniumhq.selenium</groupId>
  220. <artifactId>selenium-java</artifactId>
  221. <version>3.3.0</version>
  222. <!-- <version>2.53.1</version>-->
  223. </dependency>
  224. <dependency>
  225. <groupId>org.seleniumhq.selenium</groupId>
  226. <artifactId>selenium-chrome-driver</artifactId>
  227. <version>2.53.1</version>
  228. </dependency>
  229. <dependency>
  230. <groupId>org.seleniumhq.selenium</groupId>
  231. <artifactId>selenium-api</artifactId>
  232. <version>2.53.1</version>
  233. </dependency>
  234. <dependency>
  235. <groupId>org.seleniumhq.selenium</groupId>
  236. <artifactId>selenium-edge-driver</artifactId>
  237. <version>2.53.1</version>
  238. </dependency>
  239. <dependency>
  240. <groupId>org.seleniumhq.selenium</groupId>
  241. <artifactId>selenium-firefox-driver</artifactId>
  242. <version>2.53.1</version>
  243. </dependency>
  244. <dependency>
  245. <groupId>org.seleniumhq.selenium</groupId>
  246. <artifactId>selenium-ie-driver</artifactId>
  247. <version>2.53.1</version>
  248. </dependency>
  249. <dependency>
  250. <groupId>org.seleniumhq.selenium</groupId>
  251. <artifactId>selenium-remote-driver</artifactId>
  252. <version>2.53.1</version>
  253. </dependency>
  254. <dependency>
  255. <groupId>org.seleniumhq.selenium</groupId>
  256. <artifactId>selenium-safari-driver</artifactId>
  257. <version>2.53.1</version>
  258. </dependency>
  259. <dependency>
  260. <groupId>com.codeborne</groupId>
  261. <artifactId>phantomjsdriver</artifactId>
  262. <version>1.4.0</version>
  263. </dependency>
  264. <dependency>
  265. <groupId>org.seleniumhq.selenium</groupId>
  266. <artifactId>selenium-support</artifactId>
  267. <version>2.53.1</version>
  268. </dependency>
  269. <!-- EXCEL导出-->
  270. <dependency>
  271. <groupId>cn.afterturn</groupId>
  272. <artifactId>easypoi-base</artifactId>
  273. <version>4.1.2</version>
  274. </dependency>
  275. <dependency>
  276. <groupId>cn.afterturn</groupId>
  277. <artifactId>easypoi-web</artifactId>
  278. <version>4.1.2</version>
  279. </dependency>
  280. <dependency>
  281. <groupId>cn.afterturn</groupId>
  282. <artifactId>easypoi-annotation</artifactId>
  283. <version>4.1.2</version>
  284. </dependency>
  285. <dependency>
  286. <groupId>org.projectlombok</groupId>
  287. <artifactId>lombok</artifactId>
  288. </dependency>
  289. <!-- 分页插件 -->
  290. <dependency>
  291. <groupId>com.github.pagehelper</groupId>
  292. <artifactId>pagehelper-spring-boot-starter</artifactId>
  293. <version>1.4.6</version>
  294. <exclusions>
  295. <exclusion>
  296. <groupId>org.mybatis</groupId>
  297. <artifactId>mybatis</artifactId>
  298. </exclusion>
  299. <exclusion>
  300. <groupId>org.mybatis</groupId>
  301. <artifactId>mybatis-spring</artifactId>
  302. </exclusion>
  303. </exclusions>
  304. </dependency>
  305. <!--mybatis-->
  306. <dependency>
  307. <groupId>org.mybatis.spring.boot</groupId>
  308. <artifactId>mybatis-spring-boot-starter</artifactId>
  309. <version>2.3.0</version>
  310. </dependency>
  311. <!--mapper -->
  312. <dependency>
  313. <groupId>tk.mybatis</groupId>
  314. <artifactId>mapper-spring-boot-starter</artifactId>
  315. <version>2.1.5</version>
  316. </dependency>
  317. <!-- mybatis配置文件生成工具 -->
  318. <dependency>
  319. <groupId>org.mybatis.generator</groupId>
  320. <artifactId>mybatis-generator-core</artifactId>
  321. <version>1.4.2</version>
  322. <!-- <version>1.3.6</version>-->
  323. </dependency>
  324. <dependency>
  325. <groupId>javax.el</groupId>
  326. <artifactId>javax.el-api</artifactId>
  327. <version>3.0.0</version>
  328. </dependency>
  329. <!-- Hutool是一个小而全的Java工具类库 -->
  330. <dependency>
  331. <groupId>cn.hutool</groupId>
  332. <artifactId>hutool-all</artifactId>
  333. <version>5.7.7</version>
  334. </dependency>
  335. <!-- sftp连接 -->
  336. <dependency>
  337. <groupId>com.jcraft</groupId>
  338. <artifactId>jsch</artifactId>
  339. <version>0.1.54</version>
  340. </dependency>
  341. <!-- sftp连接 end-->
  342. <!-- xml接口请求 -->
  343. <dependency>
  344. <groupId>com.fasterxml.jackson.dataformat</groupId>
  345. <artifactId>jackson-dataformat-xml</artifactId>
  346. <version>2.9.0</version>
  347. </dependency>
  348. <dependency>
  349. <groupId>commons-httpclient</groupId>
  350. <artifactId>commons-httpclient</artifactId>
  351. <version>3.1</version>
  352. </dependency>
  353. <!-- xml接口请求 end -->
  354. <!-- &lt;!&ndash;类似redis的map&ndash;&gt;-->
  355. <!-- <dependency>-->
  356. <!-- <groupId>net.jodah</groupId>-->
  357. <!-- <artifactId>expiringmap</artifactId>-->
  358. <!-- <version>0.5.8</version>-->
  359. <!-- </dependency>-->
  360. <!--redis-->
  361. <dependency>
  362. <groupId>org.springframework.boot</groupId>
  363. <artifactId>spring-boot-starter-data-redis</artifactId>
  364. </dependency>
  365. <dependency>
  366. <groupId>org.apache.commons</groupId>
  367. <artifactId>commons-pool2</artifactId>
  368. </dependency>
  369. <!--集成微信-->
  370. <dependency>
  371. <groupId>com.github.binarywang</groupId>
  372. <artifactId>weixin-java-mp</artifactId>
  373. <version>4.3.8.B</version>
  374. </dependency>
  375. <dependency>
  376. <groupId>org.springframework.boot</groupId>
  377. <artifactId>spring-boot-configuration-processor</artifactId>
  378. <optional>true</optional>
  379. </dependency>
  380. <!--集成 mybatis-plus -->
  381. <dependency>
  382. <groupId>com.baomidou</groupId>
  383. <artifactId>mybatis-plus-boot-starter</artifactId>
  384. <version>3.5.3.1</version>
  385. </dependency>
  386. <!-- 测试 -->
  387. <dependency>
  388. <groupId>org.springframework.boot</groupId>
  389. <artifactId>spring-boot-starter-test</artifactId>
  390. <scope>test</scope>
  391. </dependency>
  392. <dependency>
  393. <groupId>org.reflections</groupId>
  394. <artifactId>reflections</artifactId>
  395. <version>0.9.10</version>
  396. </dependency>
  397. <!-- <dependency>-->
  398. <!-- <groupId>org.junit.jupiter</groupId>-->
  399. <!-- <artifactId>junit-jupiter</artifactId>-->
  400. <!-- <version>5.9.1</version>-->
  401. <!-- </dependency>-->
  402. <!--thumbnailator图片处理-->
  403. <dependency>
  404. <groupId>net.coobird</groupId>
  405. <artifactId>thumbnailator</artifactId>
  406. <version>0.4.8</version>
  407. </dependency>
  408. <!--mapStruct依赖-->
  409. <dependency>
  410. <groupId>org.mapstruct</groupId>
  411. <artifactId>mapstruct</artifactId>
  412. <version>${mapstruct.version}</version>
  413. </dependency>
  414. <dependency>
  415. <groupId>org.mapstruct</groupId>
  416. <artifactId>mapstruct-processor</artifactId>
  417. <!-- <scope>provided</scope>-->
  418. <version>${mapstruct.version}</version>
  419. </dependency>
  420. <dependency>
  421. <groupId>junit</groupId>
  422. <artifactId>junit</artifactId>
  423. <version>4.13.2</version>
  424. <!-- <version>RELEASE</version>-->
  425. <scope>test</scope>
  426. </dependency>
  427. <!--集成logstash-->
  428. <dependency>
  429. <groupId>net.logstash.logback</groupId>
  430. <artifactId>logstash-logback-encoder</artifactId>
  431. <version>5.3</version>
  432. </dependency>
  433. <!-- 解决@NotEmpty注解不生效 spring-boot 2.3.0 版本以后需要加入 -->
  434. <dependency>
  435. <groupId>org.springframework.boot</groupId>
  436. <artifactId>spring-boot-starter-validation</artifactId>
  437. </dependency>
  438. <!-- Sa-Token 权限认证,在线文档:https://sa-token.cc -->
  439. <dependency>
  440. <groupId>cn.dev33</groupId>
  441. <artifactId>sa-token-spring-boot-starter</artifactId>
  442. <version>1.35.0.RC</version>
  443. </dependency>
  444. <!-- Sa-Token 整合 Redis (使用 jdk 默认序列化方式) -->
  445. <dependency>
  446. <groupId>cn.dev33</groupId>
  447. <artifactId>sa-token-redis</artifactId>
  448. <version>1.35.0.RC</version>
  449. </dependency>
  450. <!-- rabbitmq依赖 -->
  451. <!-- <dependency>-->
  452. <!-- <groupId>org.springframework.boot</groupId>-->
  453. <!-- <artifactId>spring-boot-starter-amqp</artifactId>-->
  454. <!-- </dependency>-->
  455. </dependencies>
  456. <build>
  457. <!-- 应与application.properties(或application.yml)中context-path保持一致 -->
  458. <finalName>ROOT</finalName>
  459. <plugins>
  460. <plugin>
  461. <groupId>org.apache.maven.plugins</groupId>
  462. <artifactId>maven-jar-plugin</artifactId>
  463. <configuration>
  464. <!-- &lt;!&ndash;不打入jar包的文件类型或者路径&ndash;&gt;-->
  465. <!-- <excludes>-->
  466. <!-- <exclude>*.properties</exclude>-->
  467. <!-- <exclude>*.yml</exclude>-->
  468. <!-- <exclude>*.yaml</exclude>-->
  469. <!-- </excludes>-->
  470. <archive>
  471. <!-- <skipTests>true</skipTests>-->
  472. <manifest>
  473. <!-- 执行的主程序路径 -->
  474. <mainClass>com.ydtech.SpringInsApplication</mainClass>
  475. <!--是否要把第三方jar放到manifest的classpath中-->
  476. <addClasspath>true</addClasspath>
  477. <!--生成的manifest中classpath的前缀,因为要把第三方jar放到lib目录下,所以classpath的前缀是lib/-->
  478. <classpathPrefix>lib/</classpathPrefix>
  479. <!-- 打包时 MANIFEST.MF 文件不记录的时间戳版本 -->
  480. <useUniqueVersions>false</useUniqueVersions>
  481. </manifest>
  482. <manifestEntries>
  483. <!-- 在 Class-Path 下添加配置文件的路径 -->
  484. <Class-Path>config/</Class-Path>
  485. </manifestEntries>
  486. </archive>
  487. </configuration>
  488. </plugin>
  489. <plugin>
  490. <groupId>org.apache.maven.plugins</groupId>
  491. <artifactId>maven-dependency-plugin</artifactId>
  492. <executions>
  493. <execution>
  494. <id>copy</id>
  495. <phase>package</phase>
  496. <goals>
  497. <goal>copy-dependencies</goal>
  498. </goals>
  499. <configuration>
  500. <outputDirectory>${project.build.directory}/lib/</outputDirectory>
  501. </configuration>
  502. </execution>
  503. </executions>
  504. </plugin>
  505. <plugin>
  506. <groupId>org.apache.maven.plugins</groupId>
  507. <artifactId>maven-resources-plugin</artifactId>
  508. <version>3.1.0</version>
  509. </plugin>
  510. <!-- <plugin>-->
  511. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  512. <!-- <artifactId>maven-compiler-plugin</artifactId>-->
  513. <!-- <version>3.1</version>-->
  514. <!-- <configuration>-->
  515. <!-- <fork>true</fork>-->
  516. <!-- <executable>C:/Program Files/Java/jdk1.8.0_351/bin/javac</executable>-->
  517. <!-- </configuration>-->
  518. <!-- </plugin>-->
  519. <!-- <plugin>-->
  520. <!-- <artifactId>maven-resources-plugin</artifactId>-->
  521. <!-- <executions>-->
  522. <!-- <execution>-->
  523. <!-- <id>copy-resources</id>-->
  524. <!-- <phase>package</phase>-->
  525. <!-- <goals>-->
  526. <!-- <goal>copy-resources</goal>-->
  527. <!-- </goals>-->
  528. <!-- <configuration>-->
  529. <!-- <resources>-->
  530. <!-- &lt;!&ndash;把配置文件打包到指定路径&ndash;&gt;-->
  531. <!-- <resource>-->
  532. <!-- <directory>src/main/resources/</directory>-->
  533. <!-- <includes>-->
  534. <!-- <include>*.properties</include>-->
  535. <!-- <include>*.yml</include>-->
  536. <!-- <exclude>*.yaml</exclude>-->
  537. <!-- </includes>-->
  538. <!-- </resource>-->
  539. <!-- </resources>-->
  540. <!-- <outputDirectory>${project.build.directory}/config</outputDirectory>-->
  541. <!-- </configuration>-->
  542. <!-- </execution>-->
  543. <!-- </executions>-->
  544. <!-- </plugin>-->
  545. </plugins>
  546. </build>
  547. </project>