pom.xml 14 KB

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