pom.xml 18 KB

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