pom.xml 19 KB

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