pom.xml 16 KB

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