pom.xml 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646
  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-beta6</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.3</cryptomator.webdav.version>
  33. <!-- 3rd party dependencies -->
  34. <javafx.version>16</javafx.version>
  35. <commons-lang3.version>3.11</commons-lang3.version>
  36. <jwt.version>3.15.0</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.6</gson.version>
  41. <zxcvbn.version>1.5.2</zxcvbn.version>
  42. <slf4j.version>1.7.30</slf4j.version>
  43. <logback.version>1.2.3</logback.version>
  44. <!-- test dependencies -->
  45. <junit.jupiter.version>5.7.1</junit.jupiter.version>
  46. <mockito.version>3.9.0</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. <dependency> <!-- TMP waiting for upstream fix: https://github.com/auth0/java-jwt/pull/484 -->
  126. <groupId>com.fasterxml.jackson.core</groupId>
  127. <artifactId>jackson-databind</artifactId>
  128. <version>2.11.0</version>
  129. </dependency>
  130. <!-- EasyBind -->
  131. <dependency>
  132. <groupId>com.tobiasdiez</groupId>
  133. <artifactId>easybind</artifactId>
  134. <version>${easybind.version}</version>
  135. </dependency>
  136. <!-- Zxcvbn -->
  137. <dependency>
  138. <groupId>com.nulab-inc</groupId>
  139. <artifactId>zxcvbn</artifactId>
  140. <version>${zxcvbn.version}</version>
  141. </dependency>
  142. <!-- Google -->
  143. <dependency>
  144. <groupId>com.google.guava</groupId>
  145. <artifactId>guava</artifactId>
  146. <version>${guava.version}</version>
  147. <exclusions>
  148. <!-- see https://github.com/google/guava/wiki/UseGuavaInYourBuild#what-about-guavas-own-dependencies -->
  149. <exclusion>
  150. <groupId>com.google.guava</groupId>
  151. <artifactId>listenablefuture</artifactId>
  152. </exclusion>
  153. <exclusion>
  154. <groupId>com.google.code.findbugs</groupId>
  155. <artifactId>jsr305</artifactId>
  156. </exclusion>
  157. <exclusion>
  158. <groupId>org.checkerframework</groupId>
  159. <artifactId>checker-qual</artifactId>
  160. </exclusion>
  161. <exclusion>
  162. <groupId>com.google.errorprone</groupId>
  163. <artifactId>error_prone_annotations</artifactId>
  164. </exclusion>
  165. <exclusion>
  166. <groupId>com.google.j2objc</groupId>
  167. <artifactId>j2objc-annotations</artifactId>
  168. </exclusion>
  169. </exclusions>
  170. </dependency>
  171. <dependency>
  172. <groupId>com.google.dagger</groupId>
  173. <artifactId>dagger</artifactId>
  174. <version>${dagger.version}</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>com.google.code.gson</groupId>
  178. <artifactId>gson</artifactId>
  179. <version>${gson.version}</version>
  180. </dependency>
  181. <!-- JUnit / Mockito / Hamcrest -->
  182. <dependency>
  183. <groupId>org.junit.jupiter</groupId>
  184. <artifactId>junit-jupiter</artifactId>
  185. <version>${junit.jupiter.version}</version>
  186. <scope>test</scope>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.mockito</groupId>
  190. <artifactId>mockito-core</artifactId>
  191. <version>${mockito.version}</version>
  192. <scope>test</scope>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.hamcrest</groupId>
  196. <artifactId>hamcrest</artifactId>
  197. <version>${hamcrest.version}</version>
  198. <scope>test</scope>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.openjfx</groupId>
  202. <artifactId>javafx-swing</artifactId>
  203. <version>${javafx.version}</version>
  204. <scope>test</scope>
  205. </dependency>
  206. <dependency>
  207. <groupId>com.google.jimfs</groupId>
  208. <artifactId>jimfs</artifactId>
  209. <version>1.1</version>
  210. <scope>test</scope>
  211. </dependency>
  212. </dependencies>
  213. <build>
  214. <pluginManagement>
  215. <plugins>
  216. <plugin>
  217. <groupId>org.apache.maven.plugins</groupId>
  218. <artifactId>maven-compiler-plugin</artifactId>
  219. <version>3.8.1</version>
  220. </plugin>
  221. <plugin>
  222. <groupId>org.apache.maven.plugins</groupId>
  223. <artifactId>maven-resources-plugin</artifactId>
  224. <version>3.2.0</version>
  225. </plugin>
  226. <plugin>
  227. <groupId>org.apache.maven.plugins</groupId>
  228. <artifactId>maven-dependency-plugin</artifactId>
  229. <version>3.2.0</version>
  230. </plugin>
  231. <plugin>
  232. <groupId>org.apache.maven.plugins</groupId>
  233. <artifactId>maven-assembly-plugin</artifactId>
  234. <version>3.3.0</version>
  235. </plugin>
  236. <plugin>
  237. <groupId>org.apache.maven.plugins</groupId>
  238. <artifactId>maven-surefire-plugin</artifactId>
  239. <version>3.0.0-M5</version>
  240. </plugin>
  241. <plugin>
  242. <groupId>org.codehaus.mojo</groupId>
  243. <artifactId>license-maven-plugin</artifactId>
  244. <version>2.0.0</version>
  245. </plugin>
  246. <plugin>
  247. <groupId>org.apache.maven.plugins</groupId>
  248. <artifactId>maven-jar-plugin</artifactId>
  249. <version>3.2.0</version>
  250. </plugin>
  251. <plugin>
  252. <groupId>org.jacoco</groupId>
  253. <artifactId>jacoco-maven-plugin</artifactId>
  254. <version>0.8.6</version>
  255. </plugin>
  256. <plugin>
  257. <groupId>org.owasp</groupId>
  258. <artifactId>dependency-check-maven</artifactId>
  259. <version>6.0.3</version>
  260. </plugin>
  261. </plugins>
  262. </pluginManagement>
  263. <plugins>
  264. <plugin>
  265. <groupId>org.apache.maven.plugins</groupId>
  266. <artifactId>maven-compiler-plugin</artifactId>
  267. <configuration>
  268. <release>${project.jdk.version}</release>
  269. <annotationProcessorPaths>
  270. <path>
  271. <groupId>com.google.dagger</groupId>
  272. <artifactId>dagger-compiler</artifactId>
  273. <version>${dagger.version}</version>
  274. </path>
  275. </annotationProcessorPaths>
  276. </configuration>
  277. </plugin>
  278. <plugin>
  279. <groupId>org.apache.maven.plugins</groupId>
  280. <artifactId>maven-jar-plugin</artifactId>
  281. <configuration>
  282. <archive>
  283. <manifest>
  284. <!-- adds Implementation-Version which can be read during runtime -->
  285. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  286. </manifest>
  287. </archive>
  288. </configuration>
  289. </plugin>
  290. <plugin>
  291. <groupId>org.apache.maven.plugins</groupId>
  292. <artifactId>maven-surefire-plugin</artifactId>
  293. </plugin>
  294. <plugin>
  295. <groupId>org.apache.maven.plugins</groupId>
  296. <artifactId>maven-resources-plugin</artifactId>
  297. <executions>
  298. <execution>
  299. <id>copy-resources</id>
  300. <phase>prepare-package</phase>
  301. <goals>
  302. <goal>copy-resources</goal>
  303. </goals>
  304. <configuration>
  305. <outputDirectory>${project.build.directory}</outputDirectory>
  306. <resources>
  307. <resource>
  308. <directory>${project.basedir}/src/package</directory>
  309. <includes>
  310. <include>version.txt</include>
  311. <include>ffi-version.txt</include>
  312. <include>launcher-mac.sh</include>
  313. <include>launcher-linux.sh</include>
  314. <include>launcher-win.bat</include>
  315. <include>LICENSE.txt</include>
  316. </includes>
  317. <filtering>true</filtering>
  318. </resource>
  319. </resources>
  320. </configuration>
  321. </execution>
  322. </executions>
  323. </plugin>
  324. <plugin>
  325. <groupId>org.apache.maven.plugins</groupId>
  326. <artifactId>maven-dependency-plugin</artifactId>
  327. <executions>
  328. <execution>
  329. <id>copy-mods</id>
  330. <phase>prepare-package</phase>
  331. <goals>
  332. <goal>copy-dependencies</goal>
  333. </goals>
  334. <configuration>
  335. <includeScope>runtime</includeScope>
  336. <outputDirectory>${project.build.directory}/mods</outputDirectory>
  337. <excludeClassifiers>linux,mac,win</excludeClassifiers>
  338. <excludeGroupIds>${nonModularGroupIds}</excludeGroupIds>
  339. </configuration>
  340. </execution>
  341. <execution>
  342. <id>copy-libs</id>
  343. <phase>prepare-package</phase>
  344. <goals>
  345. <goal>copy-dependencies</goal>
  346. </goals>
  347. <configuration>
  348. <includeScope>runtime</includeScope>
  349. <outputDirectory>${project.build.directory}/libs</outputDirectory>
  350. <includeGroupIds>${nonModularGroupIds}</includeGroupIds>
  351. </configuration>
  352. </execution>
  353. </executions>
  354. </plugin>
  355. <plugin>
  356. <groupId>org.codehaus.mojo</groupId>
  357. <artifactId>license-maven-plugin</artifactId>
  358. <executions>
  359. <execution>
  360. <id>add-third-party</id>
  361. <goals>
  362. <goal>add-third-party</goal>
  363. </goals>
  364. <phase>generate-resources</phase>
  365. <configuration>
  366. <outputDirectory>${project.basedir}/src/main/resources/license</outputDirectory>
  367. <thirdPartyFilename>THIRD-PARTY.txt</thirdPartyFilename>
  368. <includedScopes>compile</includedScopes>
  369. <excludedGroups>org\.cryptomator</excludedGroups>
  370. <licenseMerges>
  371. <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>
  372. <licenseMerge>MIT License|The MIT License (MIT)|The MIT License|MIT license</licenseMerge>
  373. <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>
  374. <licenseMerge>GPLv2|GNU General Public License Version 2</licenseMerge>
  375. <licenseMerge>GPLv2+CE|CDDL + GPLv2 with classpath exception</licenseMerge>
  376. </licenseMerges>
  377. <fileTemplate>${project.basedir}/src/license/template.ftl</fileTemplate>
  378. </configuration>
  379. </execution>
  380. </executions>
  381. </plugin>
  382. </plugins>
  383. </build>
  384. <profiles>
  385. <profile>
  386. <id>coverage</id>
  387. <build>
  388. <plugins>
  389. <plugin>
  390. <groupId>org.jacoco</groupId>
  391. <artifactId>jacoco-maven-plugin</artifactId>
  392. <executions>
  393. <execution>
  394. <id>prepare-agent</id>
  395. <goals>
  396. <goal>prepare-agent</goal>
  397. </goals>
  398. </execution>
  399. <execution>
  400. <id>report</id>
  401. <goals>
  402. <goal>report</goal>
  403. </goals>
  404. </execution>
  405. </executions>
  406. <configuration>
  407. <excludes>
  408. <exclude>**/*_*</exclude>
  409. <exclude>**/Dagger*</exclude>
  410. </excludes>
  411. </configuration>
  412. </plugin>
  413. </plugins>
  414. </build>
  415. </profile>
  416. <profile>
  417. <id>dependency-check</id>
  418. <build>
  419. <plugins>
  420. <plugin>
  421. <groupId>org.owasp</groupId>
  422. <artifactId>dependency-check-maven</artifactId>
  423. <configuration>
  424. <cveValidForHours>24</cveValidForHours>
  425. <failBuildOnCVSS>0</failBuildOnCVSS>
  426. <skipTestScope>true</skipTestScope>
  427. <detail>true</detail>
  428. <suppressionFile>suppression.xml</suppressionFile>
  429. </configuration>
  430. <executions>
  431. <execution>
  432. <goals>
  433. <goal>check</goal>
  434. </goals>
  435. </execution>
  436. </executions>
  437. </plugin>
  438. </plugins>
  439. </build>
  440. </profile>
  441. <profile>
  442. <id>mac</id>
  443. <activation>
  444. <os>
  445. <family>mac</family>
  446. </os>
  447. <property>
  448. <name>idea.version</name>
  449. </property>
  450. </activation>
  451. <dependencies>
  452. <dependency>
  453. <groupId>org.cryptomator</groupId>
  454. <artifactId>integrations-mac</artifactId>
  455. <version>${cryptomator.integrations.mac.version}</version>
  456. </dependency>
  457. </dependencies>
  458. <build>
  459. <plugins>
  460. <plugin>
  461. <groupId>org.apache.maven.plugins</groupId>
  462. <artifactId>maven-assembly-plugin</artifactId>
  463. <executions>
  464. <execution>
  465. <id>assemble-mac</id>
  466. <phase>package</phase>
  467. <goals>
  468. <goal>single</goal>
  469. </goals>
  470. <configuration>
  471. <descriptors>
  472. <descriptor>assembly-mac.xml</descriptor>
  473. </descriptors>
  474. <appendAssemblyId>false</appendAssemblyId>
  475. <finalName>buildkit-mac</finalName>
  476. </configuration>
  477. </execution>
  478. </executions>
  479. </plugin>
  480. <plugin>
  481. <groupId>org.apache.maven.plugins</groupId>
  482. <artifactId>maven-dependency-plugin</artifactId>
  483. <executions>
  484. <execution>
  485. <id>copy-mac-libs</id>
  486. <phase>prepare-package</phase>
  487. <goals>
  488. <goal>copy-dependencies</goal>
  489. </goals>
  490. <configuration>
  491. <outputDirectory>${project.build.directory}/mods</outputDirectory>
  492. <includeGroupIds>org.openjfx</includeGroupIds>
  493. <classifier>mac</classifier>
  494. </configuration>
  495. </execution>
  496. </executions>
  497. </plugin>
  498. </plugins>
  499. </build>
  500. </profile>
  501. <profile>
  502. <id>linux</id>
  503. <activation>
  504. <os>
  505. <family>unix</family>
  506. <name>Linux</name>
  507. </os>
  508. <property>
  509. <name>idea.version</name>
  510. </property>
  511. </activation>
  512. <dependencies>
  513. <dependency>
  514. <groupId>org.cryptomator</groupId>
  515. <artifactId>integrations-linux</artifactId>
  516. <version>${cryptomator.integrations.linux.version}</version>
  517. </dependency>
  518. </dependencies>
  519. <build>
  520. <plugins>
  521. <plugin>
  522. <groupId>org.apache.maven.plugins</groupId>
  523. <artifactId>maven-assembly-plugin</artifactId>
  524. <executions>
  525. <execution>
  526. <id>assemble-linux</id>
  527. <phase>package</phase>
  528. <goals>
  529. <goal>single</goal>
  530. </goals>
  531. <configuration>
  532. <descriptors>
  533. <descriptor>assembly-linux.xml</descriptor>
  534. </descriptors>
  535. <appendAssemblyId>false</appendAssemblyId>
  536. <finalName>buildkit-linux</finalName>
  537. </configuration>
  538. </execution>
  539. </executions>
  540. </plugin>
  541. <plugin>
  542. <groupId>org.apache.maven.plugins</groupId>
  543. <artifactId>maven-dependency-plugin</artifactId>
  544. <executions>
  545. <execution>
  546. <id>copy-linux-libs</id>
  547. <phase>prepare-package</phase>
  548. <goals>
  549. <goal>copy-dependencies</goal>
  550. </goals>
  551. <configuration>
  552. <outputDirectory>${project.build.directory}/mods</outputDirectory>
  553. <includeGroupIds>org.openjfx</includeGroupIds>
  554. <classifier>linux</classifier>
  555. </configuration>
  556. </execution>
  557. </executions>
  558. </plugin>
  559. </plugins>
  560. </build>
  561. </profile>
  562. <profile>
  563. <id>windows</id>
  564. <activation>
  565. <os>
  566. <family>windows</family>
  567. </os>
  568. <property>
  569. <name>idea.version</name>
  570. </property>
  571. </activation>
  572. <dependencies>
  573. <dependency>
  574. <groupId>org.cryptomator</groupId>
  575. <artifactId>integrations-win</artifactId>
  576. <version>${cryptomator.integrations.win.version}</version>
  577. </dependency>
  578. </dependencies>
  579. <build>
  580. <plugins>
  581. <plugin>
  582. <groupId>org.apache.maven.plugins</groupId>
  583. <artifactId>maven-assembly-plugin</artifactId>
  584. <executions>
  585. <execution>
  586. <id>assemble-win</id>
  587. <phase>package</phase>
  588. <goals>
  589. <goal>single</goal>
  590. </goals>
  591. <configuration>
  592. <descriptors>
  593. <descriptor>assembly-win.xml</descriptor>
  594. </descriptors>
  595. <appendAssemblyId>false</appendAssemblyId>
  596. <finalName>buildkit-win</finalName>
  597. </configuration>
  598. </execution>
  599. </executions>
  600. </plugin>
  601. <plugin>
  602. <groupId>org.apache.maven.plugins</groupId>
  603. <artifactId>maven-dependency-plugin</artifactId>
  604. <executions>
  605. <execution>
  606. <id>copy-win-libs</id>
  607. <phase>prepare-package</phase>
  608. <goals>
  609. <goal>copy-dependencies</goal>
  610. </goals>
  611. <configuration>
  612. <outputDirectory>${project.build.directory}/mods</outputDirectory>
  613. <includeGroupIds>org.openjfx</includeGroupIds>
  614. <classifier>win</classifier>
  615. </configuration>
  616. </execution>
  617. </executions>
  618. </plugin>
  619. </plugins>
  620. </build>
  621. </profile>
  622. </profiles>
  623. </project>