pom.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  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.7.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>17</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.cryptolib.version>2.1.0-beta3</cryptomator.cryptolib.version>
  26. <cryptomator.cryptofs.version>2.4.2</cryptomator.cryptofs.version>
  27. <cryptomator.integrations.version>1.1.0</cryptomator.integrations.version>
  28. <cryptomator.integrations.win.version>1.1.1</cryptomator.integrations.win.version>
  29. <cryptomator.integrations.mac.version>1.1.1</cryptomator.integrations.mac.version>
  30. <cryptomator.integrations.linux.version>1.1.0</cryptomator.integrations.linux.version>
  31. <cryptomator.fuse.version>1.3.4</cryptomator.fuse.version>
  32. <cryptomator.dokany.version>1.3.3</cryptomator.dokany.version>
  33. <cryptomator.webdav.version>1.2.7</cryptomator.webdav.version>
  34. <!-- 3rd party dependencies -->
  35. <commons-lang3.version>3.12.0</commons-lang3.version>
  36. <dagger.version>2.41</dagger.version>
  37. <easybind.version>2.2</easybind.version>
  38. <guava.version>31.1-jre</guava.version>
  39. <gson.version>2.9.0</gson.version>
  40. <javafx.version>18.0.1</javafx.version>
  41. <jwt.version>4.0.0</jwt.version>
  42. <logback.version>1.2.11</logback.version>
  43. <slf4j.version>1.7.36</slf4j.version>
  44. <tinyoauth2.version>0.5.1</tinyoauth2.version>
  45. <zxcvbn.version>1.7.0</zxcvbn.version>
  46. <!-- test dependencies -->
  47. <junit.jupiter.version>5.8.1</junit.jupiter.version>
  48. <mockito.version>4.4.0</mockito.version>
  49. <hamcrest.version>2.2</hamcrest.version>
  50. <!-- build-time dependencies -->
  51. <jetbrains.annotations.version>23.0.0</jetbrains.annotations.version>
  52. <dependency-check.version>7.1.0</dependency-check.version>
  53. <jacoco.version>0.8.7</jacoco.version>
  54. </properties>
  55. <dependencies>
  56. <!-- Cryptomator Libs -->
  57. <dependency>
  58. <groupId>org.cryptomator</groupId>
  59. <artifactId>cryptolib</artifactId>
  60. <version>${cryptomator.cryptolib.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.cryptomator</groupId>
  64. <artifactId>cryptofs</artifactId>
  65. <version>${cryptomator.cryptofs.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.cryptomator</groupId>
  69. <artifactId>fuse-nio-adapter</artifactId>
  70. <version>${cryptomator.fuse.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.cryptomator</groupId>
  74. <artifactId>dokany-nio-adapter</artifactId>
  75. <version>${cryptomator.dokany.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.cryptomator</groupId>
  79. <artifactId>webdav-nio-adapter</artifactId>
  80. <version>${cryptomator.webdav.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.cryptomator</groupId>
  84. <artifactId>integrations-api</artifactId>
  85. <version>${cryptomator.integrations.version}</version>
  86. </dependency>
  87. <!-- JavaFX -->
  88. <dependency>
  89. <groupId>org.openjfx</groupId>
  90. <artifactId>javafx-base</artifactId>
  91. <version>${javafx.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.openjfx</groupId>
  95. <artifactId>javafx-graphics</artifactId>
  96. <version>${javafx.version}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.openjfx</groupId>
  100. <artifactId>javafx-controls</artifactId>
  101. <version>${javafx.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.openjfx</groupId>
  105. <artifactId>javafx-fxml</artifactId>
  106. <version>${javafx.version}</version>
  107. </dependency>
  108. <!-- Logging -->
  109. <dependency>
  110. <groupId>org.slf4j</groupId>
  111. <artifactId>slf4j-api</artifactId>
  112. <version>${slf4j.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>ch.qos.logback</groupId>
  116. <artifactId>logback-core</artifactId>
  117. <version>${logback.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>ch.qos.logback</groupId>
  121. <artifactId>logback-classic</artifactId>
  122. <version>${logback.version}</version>
  123. </dependency>
  124. <!-- Apache Commons -->
  125. <dependency>
  126. <groupId>org.apache.commons</groupId>
  127. <artifactId>commons-lang3</artifactId>
  128. <version>${commons-lang3.version}</version>
  129. </dependency>
  130. <!-- OAuth/JWT -->
  131. <dependency>
  132. <groupId>io.github.coffeelibs</groupId>
  133. <artifactId>tiny-oauth2-client</artifactId>
  134. <version>${tinyoauth2.version}</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>com.auth0</groupId>
  138. <artifactId>java-jwt</artifactId>
  139. <version>${jwt.version}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>com.nimbusds</groupId>
  143. <artifactId>nimbus-jose-jwt</artifactId>
  144. <version>9.23</version>
  145. </dependency>
  146. <!-- EasyBind -->
  147. <dependency>
  148. <groupId>com.tobiasdiez</groupId>
  149. <artifactId>easybind</artifactId>
  150. <version>${easybind.version}</version>
  151. </dependency>
  152. <!-- Zxcvbn -->
  153. <dependency>
  154. <groupId>com.nulab-inc</groupId>
  155. <artifactId>zxcvbn</artifactId>
  156. <version>${zxcvbn.version}</version>
  157. </dependency>
  158. <!-- Google -->
  159. <dependency>
  160. <groupId>com.google.guava</groupId>
  161. <artifactId>guava</artifactId>
  162. <version>${guava.version}</version>
  163. <exclusions>
  164. <!-- see https://github.com/google/guava/wiki/UseGuavaInYourBuild#what-about-guavas-own-dependencies -->
  165. <exclusion>
  166. <groupId>com.google.guava</groupId>
  167. <artifactId>listenablefuture</artifactId>
  168. </exclusion>
  169. <exclusion>
  170. <groupId>com.google.code.findbugs</groupId>
  171. <artifactId>jsr305</artifactId>
  172. </exclusion>
  173. <exclusion>
  174. <groupId>org.checkerframework</groupId>
  175. <artifactId>checker-qual</artifactId>
  176. </exclusion>
  177. <exclusion>
  178. <groupId>com.google.errorprone</groupId>
  179. <artifactId>error_prone_annotations</artifactId>
  180. </exclusion>
  181. <exclusion>
  182. <groupId>com.google.j2objc</groupId>
  183. <artifactId>j2objc-annotations</artifactId>
  184. </exclusion>
  185. </exclusions>
  186. </dependency>
  187. <dependency>
  188. <groupId>com.google.dagger</groupId>
  189. <artifactId>dagger</artifactId>
  190. <version>${dagger.version}</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>com.google.code.gson</groupId>
  194. <artifactId>gson</artifactId>
  195. <version>${gson.version}</version>
  196. </dependency>
  197. <!-- JUnit / Mockito / Hamcrest -->
  198. <dependency>
  199. <groupId>org.junit.jupiter</groupId>
  200. <artifactId>junit-jupiter</artifactId>
  201. <version>${junit.jupiter.version}</version>
  202. <scope>test</scope>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.mockito</groupId>
  206. <artifactId>mockito-core</artifactId>
  207. <version>${mockito.version}</version>
  208. <scope>test</scope>
  209. </dependency>
  210. <dependency>
  211. <groupId>org.hamcrest</groupId>
  212. <artifactId>hamcrest</artifactId>
  213. <version>${hamcrest.version}</version>
  214. <scope>test</scope>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.openjfx</groupId>
  218. <artifactId>javafx-swing</artifactId>
  219. <version>${javafx.version}</version>
  220. <scope>test</scope>
  221. </dependency>
  222. <dependency>
  223. <groupId>com.google.jimfs</groupId>
  224. <artifactId>jimfs</artifactId>
  225. <version>1.2</version>
  226. <scope>test</scope>
  227. </dependency>
  228. <dependency>
  229. <groupId>org.jetbrains</groupId>
  230. <artifactId>annotations</artifactId>
  231. <version>${jetbrains.annotations.version}</version>
  232. <scope>provided</scope>
  233. </dependency>
  234. </dependencies>
  235. <build>
  236. <pluginManagement>
  237. <plugins>
  238. <plugin>
  239. <groupId>org.apache.maven.plugins</groupId>
  240. <artifactId>maven-compiler-plugin</artifactId>
  241. <version>3.10.1</version>
  242. </plugin>
  243. <plugin>
  244. <groupId>org.apache.maven.plugins</groupId>
  245. <artifactId>maven-resources-plugin</artifactId>
  246. <version>3.2.0</version>
  247. </plugin>
  248. <plugin>
  249. <groupId>org.apache.maven.plugins</groupId>
  250. <artifactId>maven-dependency-plugin</artifactId>
  251. <version>3.3.0</version>
  252. </plugin>
  253. <plugin>
  254. <groupId>org.apache.maven.plugins</groupId>
  255. <artifactId>maven-surefire-plugin</artifactId>
  256. <version>3.0.0-M5</version>
  257. </plugin>
  258. <plugin>
  259. <groupId>org.codehaus.mojo</groupId>
  260. <artifactId>license-maven-plugin</artifactId>
  261. <version>2.0.0</version>
  262. </plugin>
  263. <plugin>
  264. <groupId>org.apache.maven.plugins</groupId>
  265. <artifactId>maven-jar-plugin</artifactId>
  266. <version>3.2.2</version>
  267. </plugin>
  268. <plugin>
  269. <groupId>org.jacoco</groupId>
  270. <artifactId>jacoco-maven-plugin</artifactId>
  271. <version>${jacoco.version}</version>
  272. </plugin>
  273. <plugin>
  274. <groupId>org.owasp</groupId>
  275. <artifactId>dependency-check-maven</artifactId>
  276. <version>${dependency-check.version}</version>
  277. </plugin>
  278. </plugins>
  279. </pluginManagement>
  280. <plugins>
  281. <plugin>
  282. <groupId>org.apache.maven.plugins</groupId>
  283. <artifactId>maven-compiler-plugin</artifactId>
  284. <configuration>
  285. <release>${project.jdk.version}</release>
  286. <annotationProcessorPaths>
  287. <path>
  288. <groupId>com.google.dagger</groupId>
  289. <artifactId>dagger-compiler</artifactId>
  290. <version>${dagger.version}</version>
  291. </path>
  292. </annotationProcessorPaths>
  293. <compilerArgs>
  294. <arg>-Adagger.fastInit=enabled</arg>
  295. <arg>-Adagger.formatGeneratedSource=enabled</arg>
  296. </compilerArgs>
  297. </configuration>
  298. </plugin>
  299. <plugin>
  300. <groupId>org.codehaus.mojo</groupId>
  301. <artifactId>exec-maven-plugin</artifactId>
  302. <version>3.0.0</version>
  303. <executions>
  304. <execution>
  305. <id>compile-light-theme</id>
  306. <phase>compile</phase>
  307. <goals>
  308. <goal>java</goal>
  309. </goals>
  310. <configuration>
  311. <mainClass>javafx.graphics/com.sun.javafx.css.parser.Css2Bin</mainClass>
  312. <arguments>
  313. <arg>${project.basedir}/src/main/resources/css/light_theme.css</arg>
  314. <arg>${project.build.outputDirectory}/css/light_theme.bss</arg>
  315. </arguments>
  316. </configuration>
  317. </execution>
  318. <execution>
  319. <id>compile-dark-theme</id>
  320. <phase>compile</phase>
  321. <goals>
  322. <goal>java</goal>
  323. </goals>
  324. <configuration>
  325. <mainClass>javafx.graphics/com.sun.javafx.css.parser.Css2Bin</mainClass>
  326. <arguments>
  327. <arg>${project.basedir}/src/main/resources/css/dark_theme.css</arg>
  328. <arg>${project.build.outputDirectory}/css/dark_theme.bss</arg>
  329. </arguments>
  330. </configuration>
  331. </execution>
  332. </executions>
  333. </plugin>
  334. <plugin>
  335. <groupId>org.apache.maven.plugins</groupId>
  336. <artifactId>maven-jar-plugin</artifactId>
  337. <configuration>
  338. <archive>
  339. <manifest>
  340. <!-- adds Implementation-Version which can be read during runtime -->
  341. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  342. </manifest>
  343. </archive>
  344. </configuration>
  345. </plugin>
  346. <plugin>
  347. <groupId>org.apache.maven.plugins</groupId>
  348. <artifactId>maven-surefire-plugin</artifactId>
  349. </plugin>
  350. <plugin>
  351. <groupId>org.apache.maven.plugins</groupId>
  352. <artifactId>maven-dependency-plugin</artifactId>
  353. <executions>
  354. <execution>
  355. <id>copy-mods</id>
  356. <phase>prepare-package</phase>
  357. <goals>
  358. <goal>copy-dependencies</goal>
  359. </goals>
  360. <configuration>
  361. <includeScope>runtime</includeScope>
  362. <outputDirectory>${project.build.directory}/mods</outputDirectory>
  363. <excludeGroupIds>${nonModularGroupIds}</excludeGroupIds>
  364. </configuration>
  365. </execution>
  366. <execution>
  367. <id>copy-libs</id>
  368. <phase>prepare-package</phase>
  369. <goals>
  370. <goal>copy-dependencies</goal>
  371. </goals>
  372. <configuration>
  373. <includeScope>runtime</includeScope>
  374. <outputDirectory>${project.build.directory}/libs</outputDirectory>
  375. <includeGroupIds>${nonModularGroupIds}</includeGroupIds>
  376. </configuration>
  377. </execution>
  378. </executions>
  379. </plugin>
  380. <plugin>
  381. <groupId>org.codehaus.mojo</groupId>
  382. <artifactId>license-maven-plugin</artifactId>
  383. <executions>
  384. <execution>
  385. <id>add-third-party</id>
  386. <goals>
  387. <goal>add-third-party</goal>
  388. </goals>
  389. <phase>generate-resources</phase>
  390. <configuration>
  391. <thirdPartyFilename>THIRD-PARTY.txt</thirdPartyFilename>
  392. <includedScopes>compile</includedScopes>
  393. <excludedGroups>org\.cryptomator</excludedGroups>
  394. <licenseMergesUrl>file:///${project.basedir}/license/merges</licenseMergesUrl>
  395. <fileTemplate>${project.basedir}/src/main/resources/license/template.ftl</fileTemplate>
  396. </configuration>
  397. </execution>
  398. </executions>
  399. </plugin>
  400. </plugins>
  401. <resources>
  402. <resource>
  403. <directory>src/main/resources</directory>
  404. <excludes>
  405. <exclude>license/*</exclude>
  406. </excludes>
  407. </resource>
  408. </resources>
  409. </build>
  410. <profiles>
  411. <profile>
  412. <id>coverage</id>
  413. <build>
  414. <plugins>
  415. <plugin>
  416. <groupId>org.jacoco</groupId>
  417. <artifactId>jacoco-maven-plugin</artifactId>
  418. <executions>
  419. <execution>
  420. <id>prepare-agent</id>
  421. <goals>
  422. <goal>prepare-agent</goal>
  423. </goals>
  424. </execution>
  425. <execution>
  426. <id>report</id>
  427. <goals>
  428. <goal>report</goal>
  429. </goals>
  430. </execution>
  431. </executions>
  432. <configuration>
  433. <excludes>
  434. <exclude>**/*_*</exclude>
  435. <exclude>**/Dagger*</exclude>
  436. </excludes>
  437. </configuration>
  438. </plugin>
  439. </plugins>
  440. </build>
  441. </profile>
  442. <profile>
  443. <id>dependency-check</id>
  444. <build>
  445. <plugins>
  446. <plugin>
  447. <groupId>org.owasp</groupId>
  448. <artifactId>dependency-check-maven</artifactId>
  449. <configuration>
  450. <cveValidForHours>24</cveValidForHours>
  451. <failBuildOnCVSS>0</failBuildOnCVSS>
  452. <skipTestScope>true</skipTestScope>
  453. <detail>true</detail>
  454. <suppressionFile>suppression.xml</suppressionFile>
  455. </configuration>
  456. <executions>
  457. <execution>
  458. <goals>
  459. <goal>check</goal>
  460. </goals>
  461. </execution>
  462. </executions>
  463. </plugin>
  464. </plugins>
  465. </build>
  466. </profile>
  467. <profile>
  468. <id>mac</id>
  469. <activation>
  470. <os>
  471. <family>mac</family>
  472. </os>
  473. <property>
  474. <name>idea.version</name>
  475. </property>
  476. </activation>
  477. <dependencies>
  478. <dependency>
  479. <groupId>org.cryptomator</groupId>
  480. <artifactId>integrations-mac</artifactId>
  481. <version>${cryptomator.integrations.mac.version}</version>
  482. </dependency>
  483. </dependencies>
  484. </profile>
  485. <profile>
  486. <id>linux</id>
  487. <activation>
  488. <os>
  489. <family>unix</family>
  490. <name>Linux</name>
  491. </os>
  492. <property>
  493. <name>idea.version</name>
  494. </property>
  495. </activation>
  496. <dependencies>
  497. <dependency>
  498. <groupId>org.cryptomator</groupId>
  499. <artifactId>integrations-linux</artifactId>
  500. <version>${cryptomator.integrations.linux.version}</version>
  501. </dependency>
  502. </dependencies>
  503. </profile>
  504. <profile>
  505. <id>win</id>
  506. <activation>
  507. <os>
  508. <family>windows</family>
  509. </os>
  510. <property>
  511. <name>idea.version</name>
  512. </property>
  513. </activation>
  514. <dependencies>
  515. <dependency>
  516. <groupId>org.cryptomator</groupId>
  517. <artifactId>integrations-win</artifactId>
  518. <version>${cryptomator.integrations.win.version}</version>
  519. </dependency>
  520. </dependencies>
  521. </profile>
  522. </profiles>
  523. </project>