pom.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  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.13.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. <developer>
  19. <name>Armin Schrenk</name>
  20. <email>armin.schrenk+dev@mailbox.org</email>
  21. <timezone>+1</timezone>
  22. </developer>
  23. </developers>
  24. <properties>
  25. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  26. <project.jdk.version>21</project.jdk.version>
  27. <!-- Group IDs of jars that need to stay on the class path for now -->
  28. <!-- remove them, as soon they got modularized or support is dropped (i.e., WebDAV) -->
  29. <nonModularGroupIds>org.ow2.asm,org.apache.jackrabbit,org.apache.httpcomponents</nonModularGroupIds>
  30. <!-- cryptomator dependencies -->
  31. <cryptomator.cryptofs.version>2.6.9</cryptomator.cryptofs.version>
  32. <cryptomator.integrations.version>1.3.1</cryptomator.integrations.version>
  33. <cryptomator.integrations.win.version>1.2.5</cryptomator.integrations.win.version>
  34. <cryptomator.integrations.mac.version>1.2.3</cryptomator.integrations.mac.version>
  35. <cryptomator.integrations.linux.version>1.4.4</cryptomator.integrations.linux.version>
  36. <cryptomator.fuse.version>4.0.0</cryptomator.fuse.version>
  37. <cryptomator.webdav.version>2.0.6</cryptomator.webdav.version>
  38. <!-- 3rd party dependencies -->
  39. <commons-lang3.version>3.14.0</commons-lang3.version>
  40. <dagger.version>2.51</dagger.version>
  41. <easybind.version>2.2</easybind.version>
  42. <guava.version>33.0.0-jre</guava.version>
  43. <jackson.version>2.16.2</jackson.version>
  44. <javafx.version>21.0.1</javafx.version>
  45. <jwt.version>4.4.0</jwt.version>
  46. <nimbus-jose.version>9.37.3</nimbus-jose.version>
  47. <logback.version>1.5.3</logback.version>
  48. <slf4j.version>2.0.12</slf4j.version>
  49. <tinyoauth2.version>0.8.0</tinyoauth2.version>
  50. <zxcvbn.version>1.8.2</zxcvbn.version>
  51. <!-- test dependencies -->
  52. <junit.jupiter.version>5.10.2</junit.jupiter.version>
  53. <mockito.version>5.11.0</mockito.version>
  54. <hamcrest.version>2.2</hamcrest.version>
  55. <!-- build-time dependencies -->
  56. <jetbrains.annotations.version>24.1.0</jetbrains.annotations.version>
  57. <dependency-check.version>9.0.10</dependency-check.version>
  58. <jacoco.version>0.8.11</jacoco.version>
  59. <license-generator.version>2.4.0</license-generator.version>
  60. <junit-tree-reporter.version>1.2.1</junit-tree-reporter.version>
  61. <mvn-compiler.version>3.13.0</mvn-compiler.version>
  62. <mvn-resources.version>3.3.1</mvn-resources.version>
  63. <mvn-dependency.version>3.6.1</mvn-dependency.version>
  64. <mvn-surefire.version>3.2.5</mvn-surefire.version>
  65. <mvn-jar.version>3.3.0</mvn-jar.version>
  66. </properties>
  67. <dependencies>
  68. <!-- Cryptomator Libs -->
  69. <dependency>
  70. <groupId>org.cryptomator</groupId>
  71. <artifactId>cryptofs</artifactId>
  72. <version>${cryptomator.cryptofs.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.cryptomator</groupId>
  76. <artifactId>fuse-nio-adapter</artifactId>
  77. <version>${cryptomator.fuse.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.cryptomator</groupId>
  81. <artifactId>webdav-nio-adapter</artifactId>
  82. <version>${cryptomator.webdav.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.cryptomator</groupId>
  86. <artifactId>integrations-api</artifactId>
  87. <version>${cryptomator.integrations.version}</version>
  88. </dependency>
  89. <!-- JavaFX -->
  90. <dependency>
  91. <groupId>org.openjfx</groupId>
  92. <artifactId>javafx-base</artifactId>
  93. <version>${javafx.version}</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.openjfx</groupId>
  97. <artifactId>javafx-graphics</artifactId>
  98. <version>${javafx.version}</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.openjfx</groupId>
  102. <artifactId>javafx-controls</artifactId>
  103. <version>${javafx.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.openjfx</groupId>
  107. <artifactId>javafx-fxml</artifactId>
  108. <version>${javafx.version}</version>
  109. </dependency>
  110. <!-- Logging -->
  111. <dependency>
  112. <groupId>org.slf4j</groupId>
  113. <artifactId>slf4j-api</artifactId>
  114. <version>${slf4j.version}</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>ch.qos.logback</groupId>
  118. <artifactId>logback-core</artifactId>
  119. <version>${logback.version}</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>ch.qos.logback</groupId>
  123. <artifactId>logback-classic</artifactId>
  124. <version>${logback.version}</version>
  125. </dependency>
  126. <!-- Apache Commons -->
  127. <dependency>
  128. <groupId>org.apache.commons</groupId>
  129. <artifactId>commons-lang3</artifactId>
  130. <version>${commons-lang3.version}</version>
  131. </dependency>
  132. <!-- OAuth/JWT -->
  133. <dependency>
  134. <groupId>io.github.coffeelibs</groupId>
  135. <artifactId>tiny-oauth2-client</artifactId>
  136. <version>${tinyoauth2.version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.auth0</groupId>
  140. <artifactId>java-jwt</artifactId>
  141. <version>${jwt.version}</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>com.nimbusds</groupId>
  145. <artifactId>nimbus-jose-jwt</artifactId>
  146. <version>${nimbus-jose.version}</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>com.fasterxml.jackson.core</groupId>
  150. <artifactId>jackson-databind</artifactId>
  151. <version>${jackson.version}</version>
  152. </dependency>
  153. <!-- EasyBind -->
  154. <dependency>
  155. <groupId>com.tobiasdiez</groupId>
  156. <artifactId>easybind</artifactId>
  157. <version>${easybind.version}</version>
  158. </dependency>
  159. <!-- Zxcvbn -->
  160. <dependency>
  161. <groupId>com.nulab-inc</groupId>
  162. <artifactId>zxcvbn</artifactId>
  163. <version>${zxcvbn.version}</version>
  164. </dependency>
  165. <!-- Google -->
  166. <dependency>
  167. <groupId>com.google.guava</groupId>
  168. <artifactId>guava</artifactId>
  169. <version>${guava.version}</version>
  170. <exclusions>
  171. <!-- see https://github.com/google/guava/wiki/UseGuavaInYourBuild#what-about-guavas-own-dependencies -->
  172. <exclusion>
  173. <groupId>com.google.guava</groupId>
  174. <artifactId>listenablefuture</artifactId>
  175. </exclusion>
  176. <exclusion>
  177. <groupId>com.google.code.findbugs</groupId>
  178. <artifactId>jsr305</artifactId>
  179. </exclusion>
  180. <exclusion>
  181. <groupId>org.checkerframework</groupId>
  182. <artifactId>checker-qual</artifactId>
  183. </exclusion>
  184. <exclusion>
  185. <groupId>com.google.errorprone</groupId>
  186. <artifactId>error_prone_annotations</artifactId>
  187. </exclusion>
  188. <exclusion>
  189. <groupId>com.google.j2objc</groupId>
  190. <artifactId>j2objc-annotations</artifactId>
  191. </exclusion>
  192. </exclusions>
  193. </dependency>
  194. <dependency>
  195. <groupId>com.google.dagger</groupId>
  196. <artifactId>dagger</artifactId>
  197. <version>${dagger.version}</version>
  198. </dependency>
  199. <!-- JUnit / Mockito / Hamcrest -->
  200. <dependency>
  201. <groupId>org.junit.jupiter</groupId>
  202. <artifactId>junit-jupiter</artifactId>
  203. <version>${junit.jupiter.version}</version>
  204. <scope>test</scope>
  205. </dependency>
  206. <dependency>
  207. <groupId>org.mockito</groupId>
  208. <artifactId>mockito-core</artifactId>
  209. <version>${mockito.version}</version>
  210. <scope>test</scope>
  211. </dependency>
  212. <dependency>
  213. <groupId>org.hamcrest</groupId>
  214. <artifactId>hamcrest</artifactId>
  215. <version>${hamcrest.version}</version>
  216. <scope>test</scope>
  217. </dependency>
  218. <dependency>
  219. <groupId>org.openjfx</groupId>
  220. <artifactId>javafx-swing</artifactId>
  221. <version>${javafx.version}</version>
  222. <scope>test</scope>
  223. </dependency>
  224. <dependency>
  225. <groupId>com.google.jimfs</groupId>
  226. <artifactId>jimfs</artifactId>
  227. <version>1.3.0</version>
  228. <scope>test</scope>
  229. </dependency>
  230. <dependency>
  231. <groupId>org.jetbrains</groupId>
  232. <artifactId>annotations</artifactId>
  233. <version>${jetbrains.annotations.version}</version>
  234. <scope>provided</scope>
  235. </dependency>
  236. </dependencies>
  237. <build>
  238. <pluginManagement>
  239. <plugins>
  240. <plugin>
  241. <groupId>org.apache.maven.plugins</groupId>
  242. <artifactId>maven-compiler-plugin</artifactId>
  243. <version>${mvn-compiler.version}</version>
  244. </plugin>
  245. <plugin>
  246. <groupId>org.apache.maven.plugins</groupId>
  247. <artifactId>maven-resources-plugin</artifactId>
  248. <version>${mvn-resources.version}</version>
  249. </plugin>
  250. <plugin>
  251. <groupId>org.apache.maven.plugins</groupId>
  252. <artifactId>maven-dependency-plugin</artifactId>
  253. <version>${mvn-dependency.version}</version>
  254. </plugin>
  255. <plugin>
  256. <groupId>org.apache.maven.plugins</groupId>
  257. <artifactId>maven-surefire-plugin</artifactId>
  258. <version>${mvn-surefire.version}</version>
  259. </plugin>
  260. <plugin>
  261. <groupId>org.codehaus.mojo</groupId>
  262. <artifactId>license-maven-plugin</artifactId>
  263. <version>${license-generator.version}</version>
  264. </plugin>
  265. <plugin>
  266. <groupId>org.apache.maven.plugins</groupId>
  267. <artifactId>maven-jar-plugin</artifactId>
  268. <version>${mvn-jar.version}</version>
  269. </plugin>
  270. <plugin>
  271. <groupId>org.jacoco</groupId>
  272. <artifactId>jacoco-maven-plugin</artifactId>
  273. <version>${jacoco.version}</version>
  274. </plugin>
  275. <plugin>
  276. <groupId>org.owasp</groupId>
  277. <artifactId>dependency-check-maven</artifactId>
  278. <version>${dependency-check.version}</version>
  279. </plugin>
  280. </plugins>
  281. </pluginManagement>
  282. <plugins>
  283. <plugin>
  284. <groupId>org.apache.maven.plugins</groupId>
  285. <artifactId>maven-compiler-plugin</artifactId>
  286. <configuration>
  287. <release>${project.jdk.version}</release>
  288. <annotationProcessorPaths>
  289. <path>
  290. <groupId>com.google.dagger</groupId>
  291. <artifactId>dagger-compiler</artifactId>
  292. <version>${dagger.version}</version>
  293. </path>
  294. </annotationProcessorPaths>
  295. <compilerArgs>
  296. <arg>-Adagger.fastInit=enabled</arg>
  297. <arg>-Adagger.formatGeneratedSource=enabled</arg>
  298. <arg>--enable-preview</arg>
  299. </compilerArgs>
  300. </configuration>
  301. </plugin>
  302. <plugin>
  303. <groupId>org.apache.maven.plugins</groupId>
  304. <artifactId>maven-jar-plugin</artifactId>
  305. <configuration>
  306. <archive>
  307. <manifest>
  308. <!-- adds Implementation-Version which can be read during runtime -->
  309. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  310. </manifest>
  311. </archive>
  312. </configuration>
  313. </plugin>
  314. <plugin>
  315. <groupId>org.apache.maven.plugins</groupId>
  316. <artifactId>maven-surefire-plugin</artifactId>
  317. <dependencies>
  318. <dependency>
  319. <groupId>me.fabriciorby</groupId>
  320. <artifactId>maven-surefire-junit5-tree-reporter</artifactId>
  321. <version>${junit-tree-reporter.version}</version>
  322. </dependency>
  323. </dependencies>
  324. <configuration>
  325. <argLine>--enable-preview</argLine>
  326. <reportFormat>plain</reportFormat>
  327. <consoleOutputReporter>
  328. <disable>true</disable>
  329. </consoleOutputReporter>
  330. <statelessTestsetInfoReporter
  331. implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5StatelessTestsetInfoTreeReporter">
  332. </statelessTestsetInfoReporter>
  333. </configuration>
  334. </plugin>
  335. <plugin>
  336. <groupId>org.apache.maven.plugins</groupId>
  337. <artifactId>maven-dependency-plugin</artifactId>
  338. <executions>
  339. <!-- sort jars into two buckets (classpath and modulepath). exclude openjfx, which gets jlinked separately -->
  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. <excludeGroupIds>org.openjfx,${nonModularGroupIds}</excludeGroupIds>
  350. </configuration>
  351. </execution>
  352. <execution>
  353. <id>copy-libs</id>
  354. <phase>prepare-package</phase>
  355. <goals>
  356. <goal>copy-dependencies</goal>
  357. </goals>
  358. <configuration>
  359. <includeScope>runtime</includeScope>
  360. <outputDirectory>${project.build.directory}/libs</outputDirectory>
  361. <includeGroupIds>${nonModularGroupIds}</includeGroupIds>
  362. </configuration>
  363. </execution>
  364. </executions>
  365. </plugin>
  366. <plugin>
  367. <groupId>org.codehaus.mojo</groupId>
  368. <artifactId>license-maven-plugin</artifactId>
  369. <executions>
  370. <execution>
  371. <id>add-third-party</id>
  372. <goals>
  373. <goal>add-third-party</goal>
  374. </goals>
  375. <phase>generate-resources</phase>
  376. <configuration>
  377. <thirdPartyFilename>THIRD-PARTY.txt</thirdPartyFilename>
  378. <includedScopes>compile</includedScopes>
  379. <excludedGroups>org\.cryptomator</excludedGroups>
  380. <licenseMergesUrl>file:///${project.basedir}/license/merges</licenseMergesUrl>
  381. <fileTemplate>${project.basedir}/src/main/resources/license/template.ftl</fileTemplate>
  382. </configuration>
  383. </execution>
  384. </executions>
  385. </plugin>
  386. </plugins>
  387. <resources>
  388. <resource>
  389. <directory>src/main/resources</directory>
  390. <excludes>
  391. <exclude>license/*</exclude>
  392. </excludes>
  393. </resource>
  394. </resources>
  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. <nvdValidForHours>24</nvdValidForHours>
  437. <failBuildOnCVSS>0</failBuildOnCVSS>
  438. <skipTestScope>true</skipTestScope>
  439. <detail>true</detail>
  440. <suppressionFile>suppression.xml</suppressionFile>
  441. <nvdApiKey>${env.NVD_API_KEY}</nvdApiKey>
  442. </configuration>
  443. <executions>
  444. <execution>
  445. <goals>
  446. <goal>check</goal>
  447. </goals>
  448. <phase>validate</phase>
  449. </execution>
  450. </executions>
  451. </plugin>
  452. </plugins>
  453. </build>
  454. </profile>
  455. <profile>
  456. <id>mac</id>
  457. <activation>
  458. <os>
  459. <family>mac</family>
  460. </os>
  461. <property>
  462. <name>idea.version</name>
  463. </property>
  464. </activation>
  465. <dependencies>
  466. <dependency>
  467. <groupId>org.cryptomator</groupId>
  468. <artifactId>integrations-mac</artifactId>
  469. <version>${cryptomator.integrations.mac.version}</version>
  470. </dependency>
  471. </dependencies>
  472. </profile>
  473. <profile>
  474. <id>linux</id>
  475. <activation>
  476. <os>
  477. <family>unix</family>
  478. <name>Linux</name>
  479. </os>
  480. <property>
  481. <name>idea.version</name>
  482. </property>
  483. </activation>
  484. <dependencies>
  485. <dependency>
  486. <groupId>org.cryptomator</groupId>
  487. <artifactId>integrations-linux</artifactId>
  488. <version>${cryptomator.integrations.linux.version}</version>
  489. </dependency>
  490. </dependencies>
  491. </profile>
  492. <profile>
  493. <id>win</id>
  494. <activation>
  495. <os>
  496. <family>windows</family>
  497. </os>
  498. <property>
  499. <name>idea.version</name>
  500. </property>
  501. </activation>
  502. <dependencies>
  503. <dependency>
  504. <groupId>org.cryptomator</groupId>
  505. <artifactId>integrations-win</artifactId>
  506. <version>${cryptomator.integrations.win.version}</version>
  507. </dependency>
  508. </dependencies>
  509. </profile>
  510. </profiles>
  511. </project>