pom.xml 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>org.cryptomator</groupId>
  5. <artifactId>cryptomator</artifactId>
  6. <version>1.6.0-SNAPSHOT</version>
  7. <name>Cryptomator Desktop App</name>
  8. <organization>
  9. <name>cryptomator.org</name>
  10. <url>https://cryptomator.org</url>
  11. </organization>
  12. <developers>
  13. <developer>
  14. <name>Sebastian Stenzel</name>
  15. <email>sebastian.stenzel@gmail.com</email>
  16. <timezone>+1</timezone>
  17. </developer>
  18. </developers>
  19. <properties>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <project.jdk.version>16</project.jdk.version>
  22. <!-- Group IDs of jars that need to stay on the class path for now -->
  23. <nonModularGroupIds>com.github.serceman,com.github.jnr,org.ow2.asm,net.java.dev.jna,org.apache.jackrabbit,org.apache.httpcomponents</nonModularGroupIds>
  24. <!-- cryptomator dependencies -->
  25. <cryptomator.cryptofs.version>2.1.0-beta9</cryptomator.cryptofs.version>
  26. <cryptomator.integrations.version>1.0.0-rc1</cryptomator.integrations.version>
  27. <cryptomator.integrations.win.version>1.0.0-beta2</cryptomator.integrations.win.version>
  28. <cryptomator.integrations.mac.version>1.0.0-beta2</cryptomator.integrations.mac.version>
  29. <cryptomator.integrations.linux.version>1.0.0-beta1</cryptomator.integrations.linux.version>
  30. <cryptomator.fuse.version>1.3.1</cryptomator.fuse.version>
  31. <cryptomator.dokany.version>1.3.1</cryptomator.dokany.version>
  32. <cryptomator.webdav.version>1.2.5</cryptomator.webdav.version>
  33. <!-- 3rd party dependencies -->
  34. <javafx.version>16</javafx.version>
  35. <commons-lang3.version>3.12.0</commons-lang3.version>
  36. <jwt.version>3.18.1</jwt.version>
  37. <easybind.version>2.2</easybind.version>
  38. <guava.version>30.1.1-jre</guava.version>
  39. <dagger.version>2.37</dagger.version>
  40. <gson.version>2.8.7</gson.version>
  41. <zxcvbn.version>1.5.2</zxcvbn.version>
  42. <slf4j.version>1.7.31</slf4j.version>
  43. <logback.version>1.2.3</logback.version>
  44. <!-- test dependencies -->
  45. <junit.jupiter.version>5.7.2</junit.jupiter.version>
  46. <mockito.version>3.11.2</mockito.version>
  47. <hamcrest.version>2.2</hamcrest.version>
  48. </properties>
  49. <dependencies>
  50. <!-- Cryptomator Libs -->
  51. <dependency>
  52. <groupId>org.cryptomator</groupId>
  53. <artifactId>cryptofs</artifactId>
  54. <version>${cryptomator.cryptofs.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.cryptomator</groupId>
  58. <artifactId>fuse-nio-adapter</artifactId>
  59. <version>${cryptomator.fuse.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.cryptomator</groupId>
  63. <artifactId>dokany-nio-adapter</artifactId>
  64. <version>${cryptomator.dokany.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.cryptomator</groupId>
  68. <artifactId>webdav-nio-adapter</artifactId>
  69. <version>${cryptomator.webdav.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.cryptomator</groupId>
  73. <artifactId>integrations-api</artifactId>
  74. <version>${cryptomator.integrations.version}</version>
  75. </dependency>
  76. <!-- JavaFX -->
  77. <dependency>
  78. <groupId>org.openjfx</groupId>
  79. <artifactId>javafx-base</artifactId>
  80. <version>${javafx.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.openjfx</groupId>
  84. <artifactId>javafx-graphics</artifactId>
  85. <version>${javafx.version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.openjfx</groupId>
  89. <artifactId>javafx-controls</artifactId>
  90. <version>${javafx.version}</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.openjfx</groupId>
  94. <artifactId>javafx-fxml</artifactId>
  95. <version>${javafx.version}</version>
  96. </dependency>
  97. <!-- Logging -->
  98. <dependency>
  99. <groupId>org.slf4j</groupId>
  100. <artifactId>slf4j-api</artifactId>
  101. <version>${slf4j.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>ch.qos.logback</groupId>
  105. <artifactId>logback-core</artifactId>
  106. <version>${logback.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>ch.qos.logback</groupId>
  110. <artifactId>logback-classic</artifactId>
  111. <version>${logback.version}</version>
  112. </dependency>
  113. <!-- Apache Commons -->
  114. <dependency>
  115. <groupId>org.apache.commons</groupId>
  116. <artifactId>commons-lang3</artifactId>
  117. <version>${commons-lang3.version}</version>
  118. </dependency>
  119. <!-- JWT -->
  120. <dependency>
  121. <groupId>com.auth0</groupId>
  122. <artifactId>java-jwt</artifactId>
  123. <version>${jwt.version}</version>
  124. </dependency>
  125. <!-- EasyBind -->
  126. <dependency>
  127. <groupId>com.tobiasdiez</groupId>
  128. <artifactId>easybind</artifactId>
  129. <version>${easybind.version}</version>
  130. </dependency>
  131. <!-- Zxcvbn -->
  132. <dependency>
  133. <groupId>com.nulab-inc</groupId>
  134. <artifactId>zxcvbn</artifactId>
  135. <version>${zxcvbn.version}</version>
  136. </dependency>
  137. <!-- Google -->
  138. <dependency>
  139. <groupId>com.google.guava</groupId>
  140. <artifactId>guava</artifactId>
  141. <version>${guava.version}</version>
  142. <exclusions>
  143. <!-- see https://github.com/google/guava/wiki/UseGuavaInYourBuild#what-about-guavas-own-dependencies -->
  144. <exclusion>
  145. <groupId>com.google.guava</groupId>
  146. <artifactId>listenablefuture</artifactId>
  147. </exclusion>
  148. <exclusion>
  149. <groupId>com.google.code.findbugs</groupId>
  150. <artifactId>jsr305</artifactId>
  151. </exclusion>
  152. <exclusion>
  153. <groupId>org.checkerframework</groupId>
  154. <artifactId>checker-qual</artifactId>
  155. </exclusion>
  156. <exclusion>
  157. <groupId>com.google.errorprone</groupId>
  158. <artifactId>error_prone_annotations</artifactId>
  159. </exclusion>
  160. <exclusion>
  161. <groupId>com.google.j2objc</groupId>
  162. <artifactId>j2objc-annotations</artifactId>
  163. </exclusion>
  164. </exclusions>
  165. </dependency>
  166. <dependency>
  167. <groupId>com.google.dagger</groupId>
  168. <artifactId>dagger</artifactId>
  169. <version>${dagger.version}</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>com.google.code.gson</groupId>
  173. <artifactId>gson</artifactId>
  174. <version>${gson.version}</version>
  175. </dependency>
  176. <!-- JUnit / Mockito / Hamcrest -->
  177. <dependency>
  178. <groupId>org.junit.jupiter</groupId>
  179. <artifactId>junit-jupiter</artifactId>
  180. <version>${junit.jupiter.version}</version>
  181. <scope>test</scope>
  182. </dependency>
  183. <dependency>
  184. <groupId>org.mockito</groupId>
  185. <artifactId>mockito-core</artifactId>
  186. <version>${mockito.version}</version>
  187. <scope>test</scope>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.hamcrest</groupId>
  191. <artifactId>hamcrest</artifactId>
  192. <version>${hamcrest.version}</version>
  193. <scope>test</scope>
  194. </dependency>
  195. <dependency>
  196. <groupId>org.openjfx</groupId>
  197. <artifactId>javafx-swing</artifactId>
  198. <version>${javafx.version}</version>
  199. <scope>test</scope>
  200. </dependency>
  201. <dependency>
  202. <groupId>com.google.jimfs</groupId>
  203. <artifactId>jimfs</artifactId>
  204. <version>1.2</version>
  205. <scope>test</scope>
  206. </dependency>
  207. </dependencies>
  208. <build>
  209. <pluginManagement>
  210. <plugins>
  211. <plugin>
  212. <groupId>org.apache.maven.plugins</groupId>
  213. <artifactId>maven-compiler-plugin</artifactId>
  214. <version>3.8.1</version>
  215. </plugin>
  216. <plugin>
  217. <groupId>org.apache.maven.plugins</groupId>
  218. <artifactId>maven-resources-plugin</artifactId>
  219. <version>3.2.0</version>
  220. </plugin>
  221. <plugin>
  222. <groupId>org.apache.maven.plugins</groupId>
  223. <artifactId>maven-dependency-plugin</artifactId>
  224. <version>3.2.0</version>
  225. </plugin>
  226. <plugin>
  227. <groupId>org.apache.maven.plugins</groupId>
  228. <artifactId>maven-assembly-plugin</artifactId>
  229. <version>3.3.0</version>
  230. </plugin>
  231. <plugin>
  232. <groupId>org.apache.maven.plugins</groupId>
  233. <artifactId>maven-surefire-plugin</artifactId>
  234. <version>3.0.0-M5</version>
  235. </plugin>
  236. <plugin>
  237. <groupId>org.codehaus.mojo</groupId>
  238. <artifactId>license-maven-plugin</artifactId>
  239. <version>2.0.0</version>
  240. </plugin>
  241. <plugin>
  242. <groupId>org.apache.maven.plugins</groupId>
  243. <artifactId>maven-jar-plugin</artifactId>
  244. <version>3.2.0</version>
  245. </plugin>
  246. <plugin>
  247. <groupId>org.jacoco</groupId>
  248. <artifactId>jacoco-maven-plugin</artifactId>
  249. <version>0.8.7</version>
  250. </plugin>
  251. <plugin>
  252. <groupId>org.owasp</groupId>
  253. <artifactId>dependency-check-maven</artifactId>
  254. <version>6.2.2</version>
  255. </plugin>
  256. </plugins>
  257. </pluginManagement>
  258. <plugins>
  259. <plugin>
  260. <groupId>org.apache.maven.plugins</groupId>
  261. <artifactId>maven-compiler-plugin</artifactId>
  262. <configuration>
  263. <release>${project.jdk.version}</release>
  264. <annotationProcessorPaths>
  265. <path>
  266. <groupId>com.google.dagger</groupId>
  267. <artifactId>dagger-compiler</artifactId>
  268. <version>${dagger.version}</version>
  269. </path>
  270. </annotationProcessorPaths>
  271. <compilerArgs>
  272. <arg>-Adagger.fastInit=enabled</arg>
  273. <arg>-Adagger.formatGeneratedSource=enabled</arg>
  274. </compilerArgs>
  275. </configuration>
  276. </plugin>
  277. <plugin>
  278. <groupId>org.apache.maven.plugins</groupId>
  279. <artifactId>maven-jar-plugin</artifactId>
  280. <configuration>
  281. <archive>
  282. <manifest>
  283. <!-- adds Implementation-Version which can be read during runtime -->
  284. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  285. </manifest>
  286. </archive>
  287. </configuration>
  288. </plugin>
  289. <plugin>
  290. <groupId>org.apache.maven.plugins</groupId>
  291. <artifactId>maven-surefire-plugin</artifactId>
  292. </plugin>
  293. <plugin>
  294. <groupId>org.apache.maven.plugins</groupId>
  295. <artifactId>maven-resources-plugin</artifactId>
  296. <executions>
  297. <execution>
  298. <id>copy-resources</id>
  299. <phase>prepare-package</phase>
  300. <goals>
  301. <goal>copy-resources</goal>
  302. </goals>
  303. <configuration>
  304. <outputDirectory>${project.build.directory}</outputDirectory>
  305. <resources>
  306. <resource>
  307. <directory>${project.basedir}/src/package</directory>
  308. <includes>
  309. <include>version.txt</include>
  310. <include>ffi-version.txt</include>
  311. <include>launcher-mac.sh</include>
  312. <include>launcher-linux.sh</include>
  313. <include>launcher-win.bat</include>
  314. <include>LICENSE.txt</include>
  315. </includes>
  316. <filtering>true</filtering>
  317. </resource>
  318. </resources>
  319. </configuration>
  320. </execution>
  321. </executions>
  322. </plugin>
  323. <plugin>
  324. <groupId>org.apache.maven.plugins</groupId>
  325. <artifactId>maven-dependency-plugin</artifactId>
  326. <executions>
  327. <execution>
  328. <id>copy-mods</id>
  329. <phase>prepare-package</phase>
  330. <goals>
  331. <goal>copy-dependencies</goal>
  332. </goals>
  333. <configuration>
  334. <includeScope>runtime</includeScope>
  335. <outputDirectory>${project.build.directory}/mods</outputDirectory>
  336. <excludeClassifiers>linux,mac,win</excludeClassifiers>
  337. <excludeGroupIds>${nonModularGroupIds}</excludeGroupIds>
  338. </configuration>
  339. </execution>
  340. <execution>
  341. <id>copy-libs</id>
  342. <phase>prepare-package</phase>
  343. <goals>
  344. <goal>copy-dependencies</goal>
  345. </goals>
  346. <configuration>
  347. <includeScope>runtime</includeScope>
  348. <outputDirectory>${project.build.directory}/libs</outputDirectory>
  349. <includeGroupIds>${nonModularGroupIds}</includeGroupIds>
  350. </configuration>
  351. </execution>
  352. </executions>
  353. </plugin>
  354. <plugin>
  355. <groupId>org.codehaus.mojo</groupId>
  356. <artifactId>license-maven-plugin</artifactId>
  357. <executions>
  358. <execution>
  359. <id>add-third-party</id>
  360. <goals>
  361. <goal>add-third-party</goal>
  362. </goals>
  363. <phase>generate-resources</phase>
  364. <configuration>
  365. <outputDirectory>${project.basedir}/src/main/resources/license</outputDirectory>
  366. <thirdPartyFilename>THIRD-PARTY.txt</thirdPartyFilename>
  367. <includedScopes>compile</includedScopes>
  368. <excludedGroups>org\.cryptomator</excludedGroups>
  369. <licenseMerges>
  370. <licenseMerge>Apache License v2.0|Apache License, Version 2.0|The Apache Software License, Version 2.0|Apache 2.0|Apache Software License - Version 2.0</licenseMerge>
  371. <licenseMerge>MIT License|The MIT License (MIT)|The MIT License|MIT license</licenseMerge>
  372. <licenseMerge>LGPL 2.1|LGPL, version 2.1|GNU Lesser/Library General Public License version 2|GNU Lesser General Public License Version 2.1</licenseMerge>
  373. <licenseMerge>GPLv2|GNU General Public License Version 2</licenseMerge>
  374. <licenseMerge>GPLv2+CE|CDDL + GPLv2 with classpath exception</licenseMerge>
  375. </licenseMerges>
  376. <fileTemplate>${project.basedir}/src/license/template.ftl</fileTemplate>
  377. </configuration>
  378. </execution>
  379. </executions>
  380. </plugin>
  381. </plugins>
  382. </build>
  383. <profiles>
  384. <profile>
  385. <id>coverage</id>
  386. <build>
  387. <plugins>
  388. <plugin>
  389. <groupId>org.jacoco</groupId>
  390. <artifactId>jacoco-maven-plugin</artifactId>
  391. <executions>
  392. <execution>
  393. <id>prepare-agent</id>
  394. <goals>
  395. <goal>prepare-agent</goal>
  396. </goals>
  397. </execution>
  398. <execution>
  399. <id>report</id>
  400. <goals>
  401. <goal>report</goal>
  402. </goals>
  403. </execution>
  404. </executions>
  405. <configuration>
  406. <excludes>
  407. <exclude>**/*_*</exclude>
  408. <exclude>**/Dagger*</exclude>
  409. </excludes>
  410. </configuration>
  411. </plugin>
  412. </plugins>
  413. </build>
  414. </profile>
  415. <profile>
  416. <id>dependency-check</id>
  417. <build>
  418. <plugins>
  419. <plugin>
  420. <groupId>org.owasp</groupId>
  421. <artifactId>dependency-check-maven</artifactId>
  422. <configuration>
  423. <cveValidForHours>24</cveValidForHours>
  424. <failBuildOnCVSS>0</failBuildOnCVSS>
  425. <skipTestScope>true</skipTestScope>
  426. <detail>true</detail>
  427. <suppressionFile>suppression.xml</suppressionFile>
  428. </configuration>
  429. <executions>
  430. <execution>
  431. <goals>
  432. <goal>check</goal>
  433. </goals>
  434. </execution>
  435. </executions>
  436. </plugin>
  437. </plugins>
  438. </build>
  439. </profile>
  440. <profile>
  441. <id>mac</id>
  442. <activation>
  443. <os>
  444. <family>mac</family>
  445. </os>
  446. <property>
  447. <name>idea.version</name>
  448. </property>
  449. </activation>
  450. <dependencies>
  451. <dependency>
  452. <groupId>org.cryptomator</groupId>
  453. <artifactId>integrations-mac</artifactId>
  454. <version>${cryptomator.integrations.mac.version}</version>
  455. </dependency>
  456. </dependencies>
  457. <build>
  458. <plugins>
  459. <plugin>
  460. <groupId>org.apache.maven.plugins</groupId>
  461. <artifactId>maven-assembly-plugin</artifactId>
  462. <executions>
  463. <execution>
  464. <id>assemble-mac</id>
  465. <phase>package</phase>
  466. <goals>
  467. <goal>single</goal>
  468. </goals>
  469. <configuration>
  470. <descriptors>
  471. <descriptor>assembly-mac.xml</descriptor>
  472. </descriptors>
  473. <appendAssemblyId>false</appendAssemblyId>
  474. <finalName>buildkit-mac</finalName>
  475. </configuration>
  476. </execution>
  477. </executions>
  478. </plugin>
  479. <plugin>
  480. <groupId>org.apache.maven.plugins</groupId>
  481. <artifactId>maven-dependency-plugin</artifactId>
  482. <executions>
  483. <execution>
  484. <id>copy-mac-libs</id>
  485. <phase>prepare-package</phase>
  486. <goals>
  487. <goal>copy-dependencies</goal>
  488. </goals>
  489. <configuration>
  490. <outputDirectory>${project.build.directory}/mods</outputDirectory>
  491. <includeGroupIds>org.openjfx</includeGroupIds>
  492. <classifier>mac</classifier>
  493. </configuration>
  494. </execution>
  495. </executions>
  496. </plugin>
  497. </plugins>
  498. </build>
  499. </profile>
  500. <profile>
  501. <id>linux</id>
  502. <activation>
  503. <os>
  504. <family>unix</family>
  505. <name>Linux</name>
  506. </os>
  507. <property>
  508. <name>idea.version</name>
  509. </property>
  510. </activation>
  511. <dependencies>
  512. <dependency>
  513. <groupId>org.cryptomator</groupId>
  514. <artifactId>integrations-linux</artifactId>
  515. <version>${cryptomator.integrations.linux.version}</version>
  516. </dependency>
  517. </dependencies>
  518. <build>
  519. <plugins>
  520. <plugin>
  521. <groupId>org.apache.maven.plugins</groupId>
  522. <artifactId>maven-assembly-plugin</artifactId>
  523. <executions>
  524. <execution>
  525. <id>assemble-linux</id>
  526. <phase>package</phase>
  527. <goals>
  528. <goal>single</goal>
  529. </goals>
  530. <configuration>
  531. <descriptors>
  532. <descriptor>assembly-linux.xml</descriptor>
  533. </descriptors>
  534. <appendAssemblyId>false</appendAssemblyId>
  535. <finalName>buildkit-linux</finalName>
  536. </configuration>
  537. </execution>
  538. </executions>
  539. </plugin>
  540. <plugin>
  541. <groupId>org.apache.maven.plugins</groupId>
  542. <artifactId>maven-dependency-plugin</artifactId>
  543. <executions>
  544. <execution>
  545. <id>copy-linux-libs</id>
  546. <phase>prepare-package</phase>
  547. <goals>
  548. <goal>copy-dependencies</goal>
  549. </goals>
  550. <configuration>
  551. <outputDirectory>${project.build.directory}/mods</outputDirectory>
  552. <includeGroupIds>org.openjfx</includeGroupIds>
  553. <classifier>linux</classifier>
  554. </configuration>
  555. </execution>
  556. </executions>
  557. </plugin>
  558. </plugins>
  559. </build>
  560. </profile>
  561. <profile>
  562. <id>windows</id>
  563. <activation>
  564. <os>
  565. <family>windows</family>
  566. </os>
  567. <property>
  568. <name>idea.version</name>
  569. </property>
  570. </activation>
  571. <dependencies>
  572. <dependency>
  573. <groupId>org.cryptomator</groupId>
  574. <artifactId>integrations-win</artifactId>
  575. <version>${cryptomator.integrations.win.version}</version>
  576. </dependency>
  577. </dependencies>
  578. <build>
  579. <plugins>
  580. <plugin>
  581. <groupId>org.apache.maven.plugins</groupId>
  582. <artifactId>maven-assembly-plugin</artifactId>
  583. <executions>
  584. <execution>
  585. <id>assemble-win</id>
  586. <phase>package</phase>
  587. <goals>
  588. <goal>single</goal>
  589. </goals>
  590. <configuration>
  591. <descriptors>
  592. <descriptor>assembly-win.xml</descriptor>
  593. </descriptors>
  594. <appendAssemblyId>false</appendAssemblyId>
  595. <finalName>buildkit-win</finalName>
  596. </configuration>
  597. </execution>
  598. </executions>
  599. </plugin>
  600. <plugin>
  601. <groupId>org.apache.maven.plugins</groupId>
  602. <artifactId>maven-dependency-plugin</artifactId>
  603. <executions>
  604. <execution>
  605. <id>copy-win-libs</id>
  606. <phase>prepare-package</phase>
  607. <goals>
  608. <goal>copy-dependencies</goal>
  609. </goals>
  610. <configuration>
  611. <outputDirectory>${project.build.directory}/mods</outputDirectory>
  612. <includeGroupIds>org.openjfx</includeGroupIds>
  613. <classifier>win</classifier>
  614. </configuration>
  615. </execution>
  616. </executions>
  617. </plugin>
  618. </plugins>
  619. </build>
  620. </profile>
  621. </profiles>
  622. </project>