pom.xml 16 KB

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