pom.xml 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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.12</cryptomator.cryptofs.version>
  24. <cryptomator.jni.version>2.2.3</cryptomator.jni.version>
  25. <cryptomator.fuse.version>1.2.3</cryptomator.fuse.version>
  26. <cryptomator.dokany.version>1.1.15</cryptomator.dokany.version>
  27. <cryptomator.webdav.version>1.0.12</cryptomator.webdav.version>
  28. <!-- 3rd party dependencies -->
  29. <javafx.version>14</javafx.version>
  30. <commons-lang3.version>3.11</commons-lang3.version>
  31. <secret-service.version>1.1.0</secret-service.version>
  32. <jwt.version>3.10.3</jwt.version>
  33. <easybind.version>1.0.3</easybind.version>
  34. <guava.version>29.0-jre</guava.version>
  35. <dagger.version>2.22</dagger.version>
  36. <gson.version>2.8.6</gson.version>
  37. <slf4j.version>1.7.30</slf4j.version>
  38. <logback.version>1.2.3</logback.version>
  39. <!-- test dependencies -->
  40. <junit.jupiter.version>5.6.2</junit.jupiter.version>
  41. <mockito.version>3.3.3</mockito.version>
  42. <hamcrest.version>2.2</hamcrest.version>
  43. </properties>
  44. <repositories>
  45. <repository>
  46. <id>jcenter</id>
  47. <url>https://jcenter.bintray.com</url>
  48. </repository>
  49. </repositories>
  50. <dependencyManagement>
  51. <dependencies>
  52. <!-- modules -->
  53. <dependency>
  54. <groupId>org.cryptomator</groupId>
  55. <artifactId>commons</artifactId>
  56. <version>${project.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.cryptomator</groupId>
  60. <artifactId>keychain</artifactId>
  61. <version>${project.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.cryptomator</groupId>
  65. <artifactId>ui</artifactId>
  66. <version>${project.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.cryptomator</groupId>
  70. <artifactId>launcher</artifactId>
  71. <version>${project.version}</version>
  72. </dependency>
  73. <!-- Cryptomator Libs -->
  74. <dependency>
  75. <groupId>org.cryptomator</groupId>
  76. <artifactId>siv-mode</artifactId>
  77. <version>1.4.0</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.cryptomator</groupId>
  81. <artifactId>cryptofs</artifactId>
  82. <version>${cryptomator.cryptofs.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.cryptomator</groupId>
  86. <artifactId>fuse-nio-adapter</artifactId>
  87. <version>${cryptomator.fuse.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.cryptomator</groupId>
  91. <artifactId>dokany-nio-adapter</artifactId>
  92. <version>${cryptomator.dokany.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.cryptomator</groupId>
  96. <artifactId>webdav-nio-adapter</artifactId>
  97. <version>${cryptomator.webdav.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.cryptomator</groupId>
  101. <artifactId>jni</artifactId>
  102. <version>${cryptomator.jni.version}</version>
  103. </dependency>
  104. <!-- JavaFX -->
  105. <dependency>
  106. <groupId>org.openjfx</groupId>
  107. <artifactId>javafx-base</artifactId>
  108. <version>${javafx.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.openjfx</groupId>
  112. <artifactId>javafx-graphics</artifactId>
  113. <version>${javafx.version}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.openjfx</groupId>
  117. <artifactId>javafx-controls</artifactId>
  118. <version>${javafx.version}</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.openjfx</groupId>
  122. <artifactId>javafx-fxml</artifactId>
  123. <version>${javafx.version}</version>
  124. </dependency>
  125. <!-- Logging -->
  126. <dependency>
  127. <groupId>org.slf4j</groupId>
  128. <artifactId>slf4j-api</artifactId>
  129. <version>${slf4j.version}</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.slf4j</groupId>
  133. <artifactId>slf4j-simple</artifactId>
  134. <version>${slf4j.version}</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>ch.qos.logback</groupId>
  138. <artifactId>logback-core</artifactId>
  139. <version>${logback.version}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>ch.qos.logback</groupId>
  143. <artifactId>logback-classic</artifactId>
  144. <version>${logback.version}</version>
  145. </dependency>
  146. <!-- Apache Commons -->
  147. <dependency>
  148. <groupId>org.apache.commons</groupId>
  149. <artifactId>commons-lang3</artifactId>
  150. <version>${commons-lang3.version}</version>
  151. </dependency>
  152. <!-- Linux System Keychain -->
  153. <dependency>
  154. <groupId>de.swiesend</groupId>
  155. <artifactId>secret-service</artifactId>
  156. <version>${secret-service.version}</version>
  157. </dependency>
  158. <!-- JWT -->
  159. <dependency>
  160. <groupId>com.auth0</groupId>
  161. <artifactId>java-jwt</artifactId>
  162. <version>${jwt.version}</version>
  163. </dependency>
  164. <!-- EasyBind -->
  165. <dependency>
  166. <groupId>org.fxmisc.easybind</groupId>
  167. <artifactId>easybind</artifactId>
  168. <version>${easybind.version}</version>
  169. </dependency>
  170. <!-- Google -->
  171. <dependency>
  172. <groupId>com.google.guava</groupId>
  173. <artifactId>guava</artifactId>
  174. <version>${guava.version}</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>com.google.dagger</groupId>
  178. <artifactId>dagger</artifactId>
  179. <version>${dagger.version}</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>com.google.code.gson</groupId>
  183. <artifactId>gson</artifactId>
  184. <version>${gson.version}</version>
  185. </dependency>
  186. <!-- JUnit / Mockito / Hamcrest -->
  187. <dependency>
  188. <groupId>org.junit.jupiter</groupId>
  189. <artifactId>junit-jupiter</artifactId>
  190. <version>${junit.jupiter.version}</version>
  191. <scope>test</scope>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.mockito</groupId>
  195. <artifactId>mockito-core</artifactId>
  196. <version>${mockito.version}</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.hamcrest</groupId>
  200. <artifactId>hamcrest</artifactId>
  201. <version>${hamcrest.version}</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>org.openjfx</groupId>
  205. <artifactId>javafx-swing</artifactId>
  206. <version>${javafx.version}</version>
  207. <scope>test</scope>
  208. </dependency>
  209. </dependencies>
  210. </dependencyManagement>
  211. <dependencies>
  212. <!-- common dependencies for all modules -->
  213. <dependency>
  214. <groupId>org.slf4j</groupId>
  215. <artifactId>slf4j-api</artifactId>
  216. </dependency>
  217. <dependency>
  218. <groupId>org.junit.jupiter</groupId>
  219. <artifactId>junit-jupiter</artifactId>
  220. </dependency>
  221. <dependency>
  222. <groupId>org.hamcrest</groupId>
  223. <artifactId>hamcrest</artifactId>
  224. <scope>test</scope>
  225. </dependency>
  226. <dependency>
  227. <groupId>org.mockito</groupId>
  228. <artifactId>mockito-core</artifactId>
  229. <scope>test</scope>
  230. </dependency>
  231. </dependencies>
  232. <modules>
  233. <module>commons</module>
  234. <module>keychain</module>
  235. <module>ui</module>
  236. <module>launcher</module>
  237. </modules>
  238. <profiles>
  239. <profile>
  240. <id>release</id>
  241. <modules>
  242. <module>buildkit</module>
  243. </modules>
  244. </profile>
  245. <profile>
  246. <id>coverage</id>
  247. <build>
  248. <plugins>
  249. <plugin>
  250. <groupId>org.jacoco</groupId>
  251. <artifactId>jacoco-maven-plugin</artifactId>
  252. </plugin>
  253. </plugins>
  254. </build>
  255. </profile>
  256. </profiles>
  257. <build>
  258. <pluginManagement>
  259. <plugins>
  260. <plugin>
  261. <artifactId>maven-dependency-plugin</artifactId>
  262. <version>3.1.2</version>
  263. <executions>
  264. <execution>
  265. <id>copy-libs</id>
  266. <goals>
  267. <goal>copy-dependencies</goal>
  268. </goals>
  269. <configuration>
  270. <outputDirectory>${project.build.directory}/libs</outputDirectory>
  271. <includeScope>runtime</includeScope>
  272. </configuration>
  273. </execution>
  274. </executions>
  275. </plugin>
  276. <plugin>
  277. <groupId>org.codehaus.mojo</groupId>
  278. <artifactId>license-maven-plugin</artifactId>
  279. <version>2.0.0</version>
  280. </plugin>
  281. <plugin>
  282. <groupId>org.apache.maven.plugins</groupId>
  283. <artifactId>maven-jar-plugin</artifactId>
  284. <version>3.2.0</version>
  285. <configuration>
  286. <archive>
  287. <manifest>
  288. <!-- adds Implementation-Version which can be read during runtime -->
  289. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  290. </manifest>
  291. </archive>
  292. </configuration>
  293. </plugin>
  294. <plugin>
  295. <groupId>org.jacoco</groupId>
  296. <artifactId>jacoco-maven-plugin</artifactId>
  297. <version>0.8.5</version>
  298. <executions>
  299. <execution>
  300. <id>prepare-agent</id>
  301. <goals>
  302. <goal>prepare-agent</goal>
  303. </goals>
  304. </execution>
  305. <execution>
  306. <id>report</id>
  307. <goals>
  308. <goal>report</goal>
  309. </goals>
  310. </execution>
  311. </executions>
  312. <configuration>
  313. <excludes>
  314. <exclude>**/*_*</exclude>
  315. <exclude>**/Dagger*</exclude>
  316. </excludes>
  317. </configuration>
  318. </plugin>
  319. </plugins>
  320. </pluginManagement>
  321. <plugins>
  322. <plugin>
  323. <artifactId>maven-compiler-plugin</artifactId>
  324. <version>3.8.1</version>
  325. <configuration>
  326. <release>14</release>
  327. <annotationProcessorPaths>
  328. <path>
  329. <groupId>com.google.dagger</groupId>
  330. <artifactId>dagger-compiler</artifactId>
  331. <version>${dagger.version}</version>
  332. </path>
  333. </annotationProcessorPaths>
  334. </configuration>
  335. </plugin>
  336. <plugin>
  337. <groupId>org.apache.maven.plugins</groupId>
  338. <artifactId>maven-surefire-plugin</artifactId>
  339. <version>2.22.2</version>
  340. </plugin>
  341. </plugins>
  342. </build>
  343. </project>