pom.xml 11 KB

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