pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445
  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>main</artifactId>
  6. <version>1.5.18</version>
  7. <packaging>pom</packaging>
  8. <name>Cryptomator</name>
  9. <organization>
  10. <name>cryptomator.org</name>
  11. <url>https://cryptomator.org</url>
  12. </organization>
  13. <developers>
  14. <developer>
  15. <name>Sebastian Stenzel</name>
  16. <email>sebastian.stenzel@gmail.com</email>
  17. <timezone>+1</timezone>
  18. </developer>
  19. </developers>
  20. <properties>
  21. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  22. <project.jdk.version>16</project.jdk.version>
  23. <!-- cryptomator dependencies -->
  24. <cryptomator.cryptofs.version>1.9.15</cryptomator.cryptofs.version>
  25. <cryptomator.integrations.version>1.0.0-beta2</cryptomator.integrations.version>
  26. <cryptomator.integrations.win.version>1.0.0-beta2</cryptomator.integrations.win.version>
  27. <cryptomator.integrations.mac.version>1.0.0-beta2</cryptomator.integrations.mac.version>
  28. <cryptomator.integrations.linux.version>1.0.0-beta1</cryptomator.integrations.linux.version>
  29. <cryptomator.fuse.version>1.3.2</cryptomator.fuse.version>
  30. <cryptomator.dokany.version>1.3.2</cryptomator.dokany.version>
  31. <cryptomator.webdav.version>1.2.5</cryptomator.webdav.version>
  32. <!-- 3rd party dependencies -->
  33. <javafx.version>16</javafx.version>
  34. <commons-lang3.version>3.11</commons-lang3.version>
  35. <jwt.version>3.13.0</jwt.version>
  36. <easybind.version>2.1.0</easybind.version>
  37. <guava.version>30.0-jre</guava.version>
  38. <dagger.version>2.32</dagger.version>
  39. <gson.version>2.8.6</gson.version>
  40. <slf4j.version>1.7.30</slf4j.version>
  41. <logback.version>1.2.3</logback.version>
  42. <!-- test dependencies -->
  43. <junit.jupiter.version>5.7.0</junit.jupiter.version>
  44. <mockito.version>3.6.0</mockito.version>
  45. <hamcrest.version>2.2</hamcrest.version>
  46. </properties>
  47. <dependencyManagement>
  48. <dependencies>
  49. <!-- modules -->
  50. <dependency>
  51. <groupId>org.cryptomator</groupId>
  52. <artifactId>commons</artifactId>
  53. <version>${project.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.cryptomator</groupId>
  57. <artifactId>ui</artifactId>
  58. <version>${project.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.cryptomator</groupId>
  62. <artifactId>launcher</artifactId>
  63. <version>${project.version}</version>
  64. </dependency>
  65. <!-- Cryptomator Libs -->
  66. <dependency>
  67. <groupId>org.cryptomator</groupId>
  68. <artifactId>cryptofs</artifactId>
  69. <version>${cryptomator.cryptofs.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.cryptomator</groupId>
  73. <artifactId>fuse-nio-adapter</artifactId>
  74. <version>${cryptomator.fuse.version}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.cryptomator</groupId>
  78. <artifactId>dokany-nio-adapter</artifactId>
  79. <version>${cryptomator.dokany.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.cryptomator</groupId>
  83. <artifactId>webdav-nio-adapter</artifactId>
  84. <version>${cryptomator.webdav.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.cryptomator</groupId>
  88. <artifactId>integrations-api</artifactId>
  89. <version>${cryptomator.integrations.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.cryptomator</groupId>
  93. <artifactId>integrations-win</artifactId>
  94. <version>${cryptomator.integrations.win.version}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.cryptomator</groupId>
  98. <artifactId>integrations-mac</artifactId>
  99. <version>${cryptomator.integrations.mac.version}</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.cryptomator</groupId>
  103. <artifactId>integrations-linux</artifactId>
  104. <version>${cryptomator.integrations.linux.version}</version>
  105. </dependency>
  106. <!-- JavaFX -->
  107. <dependency>
  108. <groupId>org.openjfx</groupId>
  109. <artifactId>javafx-base</artifactId>
  110. <version>${javafx.version}</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.openjfx</groupId>
  114. <artifactId>javafx-graphics</artifactId>
  115. <version>${javafx.version}</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.openjfx</groupId>
  119. <artifactId>javafx-controls</artifactId>
  120. <version>${javafx.version}</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.openjfx</groupId>
  124. <artifactId>javafx-fxml</artifactId>
  125. <version>${javafx.version}</version>
  126. </dependency>
  127. <!-- Logging -->
  128. <dependency>
  129. <groupId>org.slf4j</groupId>
  130. <artifactId>slf4j-api</artifactId>
  131. <version>${slf4j.version}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.slf4j</groupId>
  135. <artifactId>slf4j-simple</artifactId>
  136. <version>${slf4j.version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>ch.qos.logback</groupId>
  140. <artifactId>logback-core</artifactId>
  141. <version>${logback.version}</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>ch.qos.logback</groupId>
  145. <artifactId>logback-classic</artifactId>
  146. <version>${logback.version}</version>
  147. </dependency>
  148. <!-- Apache Commons -->
  149. <dependency>
  150. <groupId>org.apache.commons</groupId>
  151. <artifactId>commons-lang3</artifactId>
  152. <version>${commons-lang3.version}</version>
  153. </dependency>
  154. <!-- JWT -->
  155. <dependency>
  156. <groupId>com.auth0</groupId>
  157. <artifactId>java-jwt</artifactId>
  158. <version>${jwt.version}</version>
  159. </dependency>
  160. <!-- EasyBind -->
  161. <dependency>
  162. <groupId>com.tobiasdiez</groupId>
  163. <artifactId>easybind</artifactId>
  164. <version>${easybind.version}</version>
  165. </dependency>
  166. <!-- Google -->
  167. <dependency>
  168. <groupId>com.google.guava</groupId>
  169. <artifactId>guava</artifactId>
  170. <version>${guava.version}</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>com.google.dagger</groupId>
  174. <artifactId>dagger</artifactId>
  175. <version>${dagger.version}</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>com.google.code.gson</groupId>
  179. <artifactId>gson</artifactId>
  180. <version>${gson.version}</version>
  181. </dependency>
  182. <!-- JUnit / Mockito / Hamcrest -->
  183. <dependency>
  184. <groupId>org.junit.jupiter</groupId>
  185. <artifactId>junit-jupiter</artifactId>
  186. <version>${junit.jupiter.version}</version>
  187. <scope>test</scope>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.mockito</groupId>
  191. <artifactId>mockito-core</artifactId>
  192. <version>${mockito.version}</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.hamcrest</groupId>
  196. <artifactId>hamcrest</artifactId>
  197. <version>${hamcrest.version}</version>
  198. </dependency>
  199. <dependency>
  200. <groupId>org.openjfx</groupId>
  201. <artifactId>javafx-swing</artifactId>
  202. <version>${javafx.version}</version>
  203. <scope>test</scope>
  204. </dependency>
  205. </dependencies>
  206. </dependencyManagement>
  207. <dependencies>
  208. <!-- common dependencies for all modules -->
  209. <dependency>
  210. <groupId>org.slf4j</groupId>
  211. <artifactId>slf4j-api</artifactId>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.junit.jupiter</groupId>
  215. <artifactId>junit-jupiter</artifactId>
  216. <scope>test</scope>
  217. </dependency>
  218. <dependency>
  219. <groupId>org.hamcrest</groupId>
  220. <artifactId>hamcrest</artifactId>
  221. <scope>test</scope>
  222. </dependency>
  223. <dependency>
  224. <groupId>org.mockito</groupId>
  225. <artifactId>mockito-core</artifactId>
  226. <scope>test</scope>
  227. </dependency>
  228. </dependencies>
  229. <modules>
  230. <module>commons</module>
  231. <module>ui</module>
  232. <module>launcher</module>
  233. </modules>
  234. <profiles>
  235. <profile>
  236. <id>release</id>
  237. <modules>
  238. <module>buildkit</module>
  239. </modules>
  240. </profile>
  241. <profile>
  242. <id>coverage</id>
  243. <build>
  244. <plugins>
  245. <plugin>
  246. <groupId>org.jacoco</groupId>
  247. <artifactId>jacoco-maven-plugin</artifactId>
  248. </plugin>
  249. </plugins>
  250. </build>
  251. </profile>
  252. <profile>
  253. <id>mac</id>
  254. <activation>
  255. <os>
  256. <family>mac</family>
  257. </os>
  258. <property>
  259. <name>idea.version</name>
  260. </property>
  261. </activation>
  262. <dependencies>
  263. <dependency>
  264. <groupId>org.cryptomator</groupId>
  265. <artifactId>integrations-mac</artifactId>
  266. </dependency>
  267. </dependencies>
  268. </profile>
  269. <profile>
  270. <id>linux</id>
  271. <activation>
  272. <os>
  273. <family>unix</family>
  274. <name>Linux</name>
  275. </os>
  276. <property>
  277. <name>idea.version</name>
  278. </property>
  279. </activation>
  280. <dependencies>
  281. <dependency>
  282. <groupId>org.cryptomator</groupId>
  283. <artifactId>integrations-linux</artifactId>
  284. </dependency>
  285. </dependencies>
  286. </profile>
  287. <profile>
  288. <id>windows</id>
  289. <activation>
  290. <os>
  291. <family>windows</family>
  292. </os>
  293. <property>
  294. <name>idea.version</name>
  295. </property>
  296. </activation>
  297. <dependencies>
  298. <dependency>
  299. <groupId>org.cryptomator</groupId>
  300. <artifactId>integrations-win</artifactId>
  301. </dependency>
  302. </dependencies>
  303. </profile>
  304. <profile>
  305. <id>dependency-check</id>
  306. <build>
  307. <plugins>
  308. <plugin>
  309. <groupId>org.owasp</groupId>
  310. <artifactId>dependency-check-maven</artifactId>
  311. <version>6.0.3</version>
  312. <configuration>
  313. <cveValidForHours>24</cveValidForHours>
  314. <failBuildOnCVSS>0</failBuildOnCVSS>
  315. <skipTestScope>true</skipTestScope>
  316. <detail>true</detail>
  317. <suppressionFile>suppression.xml</suppressionFile>
  318. </configuration>
  319. <executions>
  320. <execution>
  321. <goals>
  322. <goal>check</goal>
  323. </goals>
  324. </execution>
  325. </executions>
  326. </plugin>
  327. </plugins>
  328. </build>
  329. </profile>
  330. </profiles>
  331. <build>
  332. <pluginManagement>
  333. <plugins>
  334. <plugin>
  335. <groupId>org.apache.maven.plugins</groupId>
  336. <artifactId>maven-compiler-plugin</artifactId>
  337. <version>3.8.1</version>
  338. </plugin>
  339. <plugin>
  340. <groupId>org.apache.maven.plugins</groupId>
  341. <artifactId>maven-resources-plugin</artifactId>
  342. <version>3.2.0</version>
  343. </plugin>
  344. <plugin>
  345. <groupId>org.apache.maven.plugins</groupId>
  346. <artifactId>maven-dependency-plugin</artifactId>
  347. <version>3.1.2</version>
  348. </plugin>
  349. <plugin>
  350. <groupId>org.apache.maven.plugins</groupId>
  351. <artifactId>maven-assembly-plugin</artifactId>
  352. <version>3.3.0</version>
  353. </plugin>
  354. <plugin>
  355. <groupId>org.apache.maven.plugins</groupId>
  356. <artifactId>maven-surefire-plugin</artifactId>
  357. <version>2.22.2</version>
  358. </plugin>
  359. <plugin>
  360. <groupId>org.codehaus.mojo</groupId>
  361. <artifactId>license-maven-plugin</artifactId>
  362. <version>2.0.0</version>
  363. </plugin>
  364. <plugin>
  365. <groupId>org.apache.maven.plugins</groupId>
  366. <artifactId>maven-jar-plugin</artifactId>
  367. <version>3.2.0</version>
  368. <configuration>
  369. <archive>
  370. <manifest>
  371. <!-- adds Implementation-Version which can be read during runtime -->
  372. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  373. </manifest>
  374. </archive>
  375. </configuration>
  376. </plugin>
  377. <plugin>
  378. <groupId>org.jacoco</groupId>
  379. <artifactId>jacoco-maven-plugin</artifactId>
  380. <version>0.8.6</version>
  381. <executions>
  382. <execution>
  383. <id>prepare-agent</id>
  384. <goals>
  385. <goal>prepare-agent</goal>
  386. </goals>
  387. </execution>
  388. <execution>
  389. <id>report</id>
  390. <goals>
  391. <goal>report</goal>
  392. </goals>
  393. </execution>
  394. </executions>
  395. <configuration>
  396. <excludes>
  397. <exclude>**/*_*</exclude>
  398. <exclude>**/Dagger*</exclude>
  399. </excludes>
  400. </configuration>
  401. </plugin>
  402. </plugins>
  403. </pluginManagement>
  404. <plugins>
  405. <plugin>
  406. <artifactId>maven-compiler-plugin</artifactId>
  407. <configuration>
  408. <release>${project.jdk.version}</release>
  409. <annotationProcessorPaths>
  410. <path>
  411. <groupId>com.google.dagger</groupId>
  412. <artifactId>dagger-compiler</artifactId>
  413. <version>${dagger.version}</version>
  414. </path>
  415. </annotationProcessorPaths>
  416. </configuration>
  417. </plugin>
  418. <plugin>
  419. <groupId>org.apache.maven.plugins</groupId>
  420. <artifactId>maven-surefire-plugin</artifactId>
  421. </plugin>
  422. </plugins>
  423. </build>
  424. </project>