pom.xml 12 KB

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