pom.xml 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525
  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.10.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>20</project.jdk.version>
  27. <!-- Group IDs of jars that need to stay on the class path for now -->
  28. <!-- Once hypfvieh, swiesend, purejava and integrations-linux have module-info, remove them-->
  29. <nonModularGroupIds>org.ow2.asm,org.apache.jackrabbit,org.apache.httpcomponents,de.swiesend,org.purejava,com.github.hypfvieh</nonModularGroupIds>
  30. <!-- cryptomator dependencies -->
  31. <cryptomator.cryptofs.version>2.6.5</cryptomator.cryptofs.version>
  32. <cryptomator.integrations.version>1.2.0</cryptomator.integrations.version>
  33. <cryptomator.integrations.win.version>1.2.0</cryptomator.integrations.win.version>
  34. <cryptomator.integrations.mac.version>1.2.0</cryptomator.integrations.mac.version>
  35. <cryptomator.integrations.linux.version>1.2.1</cryptomator.integrations.linux.version>
  36. <cryptomator.fuse.version>3.0.0</cryptomator.fuse.version>
  37. <cryptomator.dokany.version>2.0.0</cryptomator.dokany.version>
  38. <cryptomator.webdav.version>2.0.3</cryptomator.webdav.version>
  39. <!-- 3rd party dependencies -->
  40. <commons-lang3.version>3.12.0</commons-lang3.version>
  41. <dagger.version>2.45</dagger.version>
  42. <easybind.version>2.2</easybind.version>
  43. <guava.version>32.0.1-jre</guava.version>
  44. <jackson.version>2.15.2</jackson.version>
  45. <gson.version>2.10.1</gson.version>
  46. <javafx.version>20.0.1</javafx.version>
  47. <jwt.version>4.4.0</jwt.version>
  48. <nimbus-jose.version>9.31</nimbus-jose.version>
  49. <logback.version>1.4.7</logback.version>
  50. <slf4j.version>2.0.7</slf4j.version>
  51. <tinyoauth2.version>0.5.1</tinyoauth2.version>
  52. <zxcvbn.version>1.7.0</zxcvbn.version>
  53. <!-- test dependencies -->
  54. <junit.jupiter.version>5.9.3</junit.jupiter.version>
  55. <mockito.version>5.3.1</mockito.version>
  56. <hamcrest.version>2.2</hamcrest.version>
  57. <!-- build-time dependencies -->
  58. <jetbrains.annotations.version>23.0.0</jetbrains.annotations.version>
  59. <dependency-check.version>8.1.2</dependency-check.version>
  60. <jacoco.version>0.8.9</jacoco.version>
  61. </properties>
  62. <dependencies>
  63. <!-- Cryptomator Libs -->
  64. <dependency>
  65. <groupId>org.cryptomator</groupId>
  66. <artifactId>cryptofs</artifactId>
  67. <version>${cryptomator.cryptofs.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.cryptomator</groupId>
  71. <artifactId>fuse-nio-adapter</artifactId>
  72. <version>${cryptomator.fuse.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.cryptomator</groupId>
  76. <artifactId>dokany-nio-adapter</artifactId>
  77. <version>${cryptomator.dokany.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. <dependency> <!-- TODO replace with jackson -->
  200. <groupId>com.google.code.gson</groupId>
  201. <artifactId>gson</artifactId>
  202. <version>${gson.version}</version>
  203. </dependency>
  204. <!-- JUnit / Mockito / Hamcrest -->
  205. <dependency>
  206. <groupId>org.junit.jupiter</groupId>
  207. <artifactId>junit-jupiter</artifactId>
  208. <version>${junit.jupiter.version}</version>
  209. <scope>test</scope>
  210. </dependency>
  211. <dependency>
  212. <groupId>org.mockito</groupId>
  213. <artifactId>mockito-core</artifactId>
  214. <version>${mockito.version}</version>
  215. <scope>test</scope>
  216. </dependency>
  217. <dependency>
  218. <groupId>org.hamcrest</groupId>
  219. <artifactId>hamcrest</artifactId>
  220. <version>${hamcrest.version}</version>
  221. <scope>test</scope>
  222. </dependency>
  223. <dependency>
  224. <groupId>org.openjfx</groupId>
  225. <artifactId>javafx-swing</artifactId>
  226. <version>${javafx.version}</version>
  227. <scope>test</scope>
  228. </dependency>
  229. <dependency>
  230. <groupId>com.google.jimfs</groupId>
  231. <artifactId>jimfs</artifactId>
  232. <version>1.2</version>
  233. <scope>test</scope>
  234. </dependency>
  235. <dependency>
  236. <groupId>org.jetbrains</groupId>
  237. <artifactId>annotations</artifactId>
  238. <version>${jetbrains.annotations.version}</version>
  239. <scope>provided</scope>
  240. </dependency>
  241. </dependencies>
  242. <build>
  243. <pluginManagement>
  244. <plugins>
  245. <plugin>
  246. <groupId>org.apache.maven.plugins</groupId>
  247. <artifactId>maven-compiler-plugin</artifactId>
  248. <version>3.10.1</version>
  249. </plugin>
  250. <plugin>
  251. <groupId>org.apache.maven.plugins</groupId>
  252. <artifactId>maven-resources-plugin</artifactId>
  253. <version>3.3.0</version>
  254. </plugin>
  255. <plugin>
  256. <groupId>org.apache.maven.plugins</groupId>
  257. <artifactId>maven-dependency-plugin</artifactId>
  258. <version>3.3.0</version>
  259. </plugin>
  260. <plugin>
  261. <groupId>org.apache.maven.plugins</groupId>
  262. <artifactId>maven-surefire-plugin</artifactId>
  263. <version>3.0.0-M7</version>
  264. </plugin>
  265. <plugin>
  266. <groupId>org.codehaus.mojo</groupId>
  267. <artifactId>license-maven-plugin</artifactId>
  268. <version>2.0.0</version>
  269. </plugin>
  270. <plugin>
  271. <groupId>org.apache.maven.plugins</groupId>
  272. <artifactId>maven-jar-plugin</artifactId>
  273. <version>3.3.0</version>
  274. </plugin>
  275. <plugin>
  276. <groupId>org.jacoco</groupId>
  277. <artifactId>jacoco-maven-plugin</artifactId>
  278. <version>${jacoco.version}</version>
  279. </plugin>
  280. <plugin>
  281. <groupId>org.owasp</groupId>
  282. <artifactId>dependency-check-maven</artifactId>
  283. <version>${dependency-check.version}</version>
  284. </plugin>
  285. </plugins>
  286. </pluginManagement>
  287. <plugins>
  288. <plugin>
  289. <groupId>org.apache.maven.plugins</groupId>
  290. <artifactId>maven-compiler-plugin</artifactId>
  291. <configuration>
  292. <release>${project.jdk.version}</release>
  293. <annotationProcessorPaths>
  294. <path>
  295. <groupId>com.google.dagger</groupId>
  296. <artifactId>dagger-compiler</artifactId>
  297. <version>${dagger.version}</version>
  298. </path>
  299. </annotationProcessorPaths>
  300. <compilerArgs>
  301. <arg>-Adagger.fastInit=enabled</arg>
  302. <arg>-Adagger.formatGeneratedSource=enabled</arg>
  303. <arg>--enable-preview</arg>
  304. </compilerArgs>
  305. </configuration>
  306. </plugin>
  307. <plugin>
  308. <groupId>org.apache.maven.plugins</groupId>
  309. <artifactId>maven-jar-plugin</artifactId>
  310. <configuration>
  311. <archive>
  312. <manifest>
  313. <!-- adds Implementation-Version which can be read during runtime -->
  314. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  315. </manifest>
  316. </archive>
  317. </configuration>
  318. </plugin>
  319. <plugin>
  320. <groupId>org.apache.maven.plugins</groupId>
  321. <artifactId>maven-surefire-plugin</artifactId>
  322. <configuration>
  323. <argLine>--enable-preview</argLine>
  324. </configuration>
  325. </plugin>
  326. <plugin>
  327. <groupId>org.apache.maven.plugins</groupId>
  328. <artifactId>maven-dependency-plugin</artifactId>
  329. <executions>
  330. <!-- sort jars into two buckets (classpath and modulepath). exclude openjfx, which gets jlinked separately -->
  331. <execution>
  332. <id>copy-mods</id>
  333. <phase>prepare-package</phase>
  334. <goals>
  335. <goal>copy-dependencies</goal>
  336. </goals>
  337. <configuration>
  338. <includeScope>runtime</includeScope>
  339. <outputDirectory>${project.build.directory}/mods</outputDirectory>
  340. <excludeGroupIds>org.openjfx,${nonModularGroupIds}</excludeGroupIds>
  341. </configuration>
  342. </execution>
  343. <execution>
  344. <id>copy-libs</id>
  345. <phase>prepare-package</phase>
  346. <goals>
  347. <goal>copy-dependencies</goal>
  348. </goals>
  349. <configuration>
  350. <includeScope>runtime</includeScope>
  351. <outputDirectory>${project.build.directory}/libs</outputDirectory>
  352. <includeGroupIds>${nonModularGroupIds}</includeGroupIds>
  353. </configuration>
  354. </execution>
  355. </executions>
  356. </plugin>
  357. <plugin>
  358. <groupId>org.codehaus.mojo</groupId>
  359. <artifactId>license-maven-plugin</artifactId>
  360. <executions>
  361. <execution>
  362. <id>add-third-party</id>
  363. <goals>
  364. <goal>add-third-party</goal>
  365. </goals>
  366. <phase>generate-resources</phase>
  367. <configuration>
  368. <thirdPartyFilename>THIRD-PARTY.txt</thirdPartyFilename>
  369. <includedScopes>compile</includedScopes>
  370. <excludedGroups>org\.cryptomator</excludedGroups>
  371. <licenseMergesUrl>file:///${project.basedir}/license/merges</licenseMergesUrl>
  372. <fileTemplate>${project.basedir}/src/main/resources/license/template.ftl</fileTemplate>
  373. </configuration>
  374. </execution>
  375. </executions>
  376. </plugin>
  377. </plugins>
  378. <resources>
  379. <resource>
  380. <directory>src/main/resources</directory>
  381. <excludes>
  382. <exclude>license/*</exclude>
  383. </excludes>
  384. </resource>
  385. </resources>
  386. </build>
  387. <profiles>
  388. <profile>
  389. <id>coverage</id>
  390. <build>
  391. <plugins>
  392. <plugin>
  393. <groupId>org.jacoco</groupId>
  394. <artifactId>jacoco-maven-plugin</artifactId>
  395. <executions>
  396. <execution>
  397. <id>prepare-agent</id>
  398. <goals>
  399. <goal>prepare-agent</goal>
  400. </goals>
  401. </execution>
  402. <execution>
  403. <id>report</id>
  404. <goals>
  405. <goal>report</goal>
  406. </goals>
  407. </execution>
  408. </executions>
  409. <configuration>
  410. <excludes>
  411. <exclude>**/*_*</exclude>
  412. <exclude>**/Dagger*</exclude>
  413. </excludes>
  414. </configuration>
  415. </plugin>
  416. </plugins>
  417. </build>
  418. </profile>
  419. <profile>
  420. <id>dependency-check</id>
  421. <build>
  422. <plugins>
  423. <plugin>
  424. <groupId>org.owasp</groupId>
  425. <artifactId>dependency-check-maven</artifactId>
  426. <configuration>
  427. <cveValidForHours>24</cveValidForHours>
  428. <failBuildOnCVSS>0</failBuildOnCVSS>
  429. <skipTestScope>true</skipTestScope>
  430. <detail>true</detail>
  431. <suppressionFile>suppression.xml</suppressionFile>
  432. </configuration>
  433. <executions>
  434. <execution>
  435. <goals>
  436. <goal>check</goal>
  437. </goals>
  438. </execution>
  439. </executions>
  440. </plugin>
  441. </plugins>
  442. </build>
  443. </profile>
  444. <profile>
  445. <id>mac</id>
  446. <activation>
  447. <os>
  448. <family>mac</family>
  449. </os>
  450. <property>
  451. <name>idea.version</name>
  452. </property>
  453. </activation>
  454. <dependencies>
  455. <dependency>
  456. <groupId>org.cryptomator</groupId>
  457. <artifactId>integrations-mac</artifactId>
  458. <version>${cryptomator.integrations.mac.version}</version>
  459. </dependency>
  460. </dependencies>
  461. </profile>
  462. <profile>
  463. <id>linux</id>
  464. <activation>
  465. <os>
  466. <family>unix</family>
  467. <name>Linux</name>
  468. </os>
  469. <property>
  470. <name>idea.version</name>
  471. </property>
  472. </activation>
  473. <dependencies>
  474. <dependency>
  475. <groupId>org.cryptomator</groupId>
  476. <artifactId>integrations-linux</artifactId>
  477. <version>${cryptomator.integrations.linux.version}</version>
  478. </dependency>
  479. </dependencies>
  480. </profile>
  481. <profile>
  482. <id>win</id>
  483. <activation>
  484. <os>
  485. <family>windows</family>
  486. </os>
  487. <property>
  488. <name>idea.version</name>
  489. </property>
  490. </activation>
  491. <dependencies>
  492. <dependency>
  493. <groupId>org.cryptomator</groupId>
  494. <artifactId>integrations-win</artifactId>
  495. <version>${cryptomator.integrations.win.version}</version>
  496. </dependency>
  497. </dependencies>
  498. </profile>
  499. </profiles>
  500. </project>