pom.xml 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  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.4.0-SNAPSHOT</version>
  7. <packaging>pom</packaging>
  8. <name>Cryptomator</name>
  9. <organization>
  10. <name>cryptomator.org</name>
  11. <url>http://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. <!-- dependency versions -->
  23. <cryptomator.cryptolib.version>1.1.7</cryptomator.cryptolib.version>
  24. <cryptomator.cryptofs.version>1.4.5</cryptomator.cryptofs.version>
  25. <cryptomator.webdav.version>1.0.3</cryptomator.webdav.version>
  26. <cryptomator.jni.version>1.1.0-SNAPSHOT</cryptomator.jni.version>
  27. <commons-io.version>2.5</commons-io.version>
  28. <commons-lang3.version>3.6</commons-lang3.version>
  29. <httpclient.version>4.5.3</httpclient.version>
  30. <easybind.version>1.0.3</easybind.version>
  31. <guava.version>23.5-jre</guava.version>
  32. <dagger.version>2.14</dagger.version>
  33. <gson.version>2.8.2</gson.version>
  34. <slf4j.version>1.7.25</slf4j.version>
  35. <logback.version>1.2.3</logback.version>
  36. <junit.version>4.12</junit.version>
  37. <junit.hierarchicalrunner.version>4.12.1</junit.hierarchicalrunner.version>
  38. <mockito.version>2.11.0</mockito.version>
  39. <hamcrest.version>1.3</hamcrest.version> <!-- keep in sync with version required by JUnit -->
  40. </properties>
  41. <repositories>
  42. <repository>
  43. <id>ossrh-snapshots</id>
  44. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  45. <releases>
  46. <enabled>false</enabled>
  47. </releases>
  48. <snapshots>
  49. <enabled>true</enabled>
  50. </snapshots>
  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>keychain</artifactId>
  64. <version>${project.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.cryptomator</groupId>
  68. <artifactId>ui</artifactId>
  69. <version>${project.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.cryptomator</groupId>
  73. <artifactId>launcher</artifactId>
  74. <version>${project.version}</version>
  75. </dependency>
  76. <!-- Cryptomator Libs -->
  77. <dependency>
  78. <groupId>org.cryptomator</groupId>
  79. <artifactId>cryptolib</artifactId>
  80. <version>${cryptomator.cryptolib.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.cryptomator</groupId>
  84. <artifactId>cryptofs</artifactId>
  85. <version>${cryptomator.cryptofs.version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.cryptomator</groupId>
  89. <artifactId>webdav-nio-adapter</artifactId>
  90. <version>${cryptomator.webdav.version}</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.cryptomator</groupId>
  94. <artifactId>jni</artifactId>
  95. <version>${cryptomator.jni.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>org.slf4j</groupId>
  105. <artifactId>slf4j-simple</artifactId>
  106. <version>${slf4j.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>ch.qos.logback</groupId>
  110. <artifactId>logback-core</artifactId>
  111. <version>${logback.version}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>ch.qos.logback</groupId>
  115. <artifactId>logback-classic</artifactId>
  116. <version>${logback.version}</version>
  117. </dependency>
  118. <!-- Apache Commons -->
  119. <dependency>
  120. <groupId>commons-io</groupId>
  121. <artifactId>commons-io</artifactId>
  122. <version>${commons-io.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.apache.commons</groupId>
  126. <artifactId>commons-lang3</artifactId>
  127. <version>${commons-lang3.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.apache.httpcomponents</groupId>
  131. <artifactId>httpclient</artifactId>
  132. <version>${httpclient.version}</version>
  133. </dependency>
  134. <!-- EasyBind -->
  135. <dependency>
  136. <groupId>org.fxmisc.easybind</groupId>
  137. <artifactId>easybind</artifactId>
  138. <version>${easybind.version}</version>
  139. </dependency>
  140. <!-- Google -->
  141. <dependency>
  142. <groupId>com.google.guava</groupId>
  143. <artifactId>guava</artifactId>
  144. <version>${guava.version}</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>com.google.dagger</groupId>
  148. <artifactId>dagger</artifactId>
  149. <version>${dagger.version}</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>com.google.dagger</groupId>
  153. <artifactId>dagger-compiler</artifactId>
  154. <version>${dagger.version}</version>
  155. <optional>true</optional>
  156. <scope>provided</scope>
  157. </dependency>
  158. <dependency>
  159. <groupId>com.google.auto</groupId>
  160. <artifactId>auto-common</artifactId>
  161. <version>0.9</version>
  162. <optional>true</optional>
  163. <scope>provided</scope>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.google.code.gson</groupId>
  167. <artifactId>gson</artifactId>
  168. <version>${gson.version}</version>
  169. </dependency>
  170. <!-- JUnit / Mockito / Hamcrest -->
  171. <dependency>
  172. <groupId>junit</groupId>
  173. <artifactId>junit</artifactId>
  174. <version>${junit.version}</version>
  175. <exclusions>
  176. <exclusion>
  177. <artifactId>hamcrest-core</artifactId>
  178. <groupId>org.hamcrest</groupId>
  179. </exclusion>
  180. </exclusions>
  181. </dependency>
  182. <dependency>
  183. <groupId>de.bechte.junit</groupId>
  184. <artifactId>junit-hierarchicalcontextrunner</artifactId>
  185. <version>${junit.hierarchicalrunner.version}</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.mockito</groupId>
  189. <artifactId>mockito-core</artifactId>
  190. <version>${mockito.version}</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.hamcrest</groupId>
  194. <artifactId>hamcrest-all</artifactId>
  195. <version>${hamcrest.version}</version>
  196. </dependency>
  197. </dependencies>
  198. </dependencyManagement>
  199. <dependencies>
  200. <!-- common dependencies for all modules -->
  201. <dependency>
  202. <groupId>org.slf4j</groupId>
  203. <artifactId>slf4j-api</artifactId>
  204. </dependency>
  205. <dependency>
  206. <groupId>junit</groupId>
  207. <artifactId>junit</artifactId>
  208. <scope>test</scope>
  209. </dependency>
  210. <dependency>
  211. <groupId>org.hamcrest</groupId>
  212. <artifactId>hamcrest-all</artifactId>
  213. <scope>test</scope>
  214. </dependency>
  215. <dependency>
  216. <groupId>org.mockito</groupId>
  217. <artifactId>mockito-core</artifactId>
  218. <scope>test</scope>
  219. </dependency>
  220. <dependency>
  221. <groupId>de.bechte.junit</groupId>
  222. <artifactId>junit-hierarchicalcontextrunner</artifactId>
  223. <scope>test</scope>
  224. </dependency>
  225. </dependencies>
  226. <modules>
  227. <module>commons</module>
  228. <module>keychain</module>
  229. <module>ui</module>
  230. <module>launcher</module>
  231. </modules>
  232. <profiles>
  233. <profile>
  234. <id>release</id>
  235. <modules>
  236. <module>uber-jar</module>
  237. <module>ant-kit</module>
  238. </modules>
  239. </profile>
  240. <profile>
  241. <id>coverage</id>
  242. <modules>
  243. <module>jacoco-report</module>
  244. </modules>
  245. <build>
  246. <plugins>
  247. <plugin>
  248. <groupId>org.jacoco</groupId>
  249. <artifactId>jacoco-maven-plugin</artifactId>
  250. </plugin>
  251. </plugins>
  252. </build>
  253. </profile>
  254. </profiles>
  255. <build>
  256. <pluginManagement>
  257. <plugins>
  258. <plugin>
  259. <artifactId>maven-dependency-plugin</artifactId>
  260. <version>3.0.2</version>
  261. <executions>
  262. <execution>
  263. <id>copy-libs</id>
  264. <goals>
  265. <goal>copy-dependencies</goal>
  266. </goals>
  267. <configuration>
  268. <outputDirectory>${project.build.directory}/libs</outputDirectory>
  269. <includeScope>runtime</includeScope>
  270. </configuration>
  271. </execution>
  272. </executions>
  273. </plugin>
  274. <plugin>
  275. <groupId>org.jacoco</groupId>
  276. <artifactId>jacoco-maven-plugin</artifactId>
  277. <version>0.7.9</version>
  278. <executions>
  279. <execution>
  280. <id>prepare-agent</id>
  281. <goals>
  282. <goal>prepare-agent</goal>
  283. </goals>
  284. </execution>
  285. </executions>
  286. <configuration>
  287. <excludes>
  288. <exclude>**/*_*</exclude>
  289. <exclude>**/Dagger*</exclude>
  290. </excludes>
  291. </configuration>
  292. </plugin>
  293. </plugins>
  294. </pluginManagement>
  295. <plugins>
  296. <plugin>
  297. <artifactId>maven-compiler-plugin</artifactId>
  298. <version>3.7.0</version>
  299. <configuration>
  300. <source>1.8</source>
  301. <target>1.8</target>
  302. </configuration>
  303. </plugin>
  304. </plugins>
  305. </build>
  306. </project>