pom.xml 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  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.3.5</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.2.0</cryptomator.cryptolib.version>
  24. <cryptomator.cryptofs.version>1.5.1</cryptomator.cryptofs.version>
  25. <cryptomator.webdav.version>1.0.4</cryptomator.webdav.version>
  26. <cryptomator.jni.version>1.0.2</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.11</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. </dependency>
  157. <dependency>
  158. <groupId>com.google.code.gson</groupId>
  159. <artifactId>gson</artifactId>
  160. <version>${gson.version}</version>
  161. </dependency>
  162. <!-- JUnit / Mockito / Hamcrest -->
  163. <dependency>
  164. <groupId>junit</groupId>
  165. <artifactId>junit</artifactId>
  166. <version>${junit.version}</version>
  167. <exclusions>
  168. <exclusion>
  169. <artifactId>hamcrest-core</artifactId>
  170. <groupId>org.hamcrest</groupId>
  171. </exclusion>
  172. </exclusions>
  173. </dependency>
  174. <dependency>
  175. <groupId>de.bechte.junit</groupId>
  176. <artifactId>junit-hierarchicalcontextrunner</artifactId>
  177. <version>${junit.hierarchicalrunner.version}</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.mockito</groupId>
  181. <artifactId>mockito-core</artifactId>
  182. <version>${mockito.version}</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.hamcrest</groupId>
  186. <artifactId>hamcrest-all</artifactId>
  187. <version>${hamcrest.version}</version>
  188. </dependency>
  189. </dependencies>
  190. </dependencyManagement>
  191. <dependencies>
  192. <!-- common dependencies for all modules -->
  193. <dependency>
  194. <groupId>org.slf4j</groupId>
  195. <artifactId>slf4j-api</artifactId>
  196. </dependency>
  197. <dependency>
  198. <groupId>junit</groupId>
  199. <artifactId>junit</artifactId>
  200. <scope>test</scope>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.hamcrest</groupId>
  204. <artifactId>hamcrest-all</artifactId>
  205. <scope>test</scope>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.mockito</groupId>
  209. <artifactId>mockito-core</artifactId>
  210. <scope>test</scope>
  211. </dependency>
  212. <dependency>
  213. <groupId>de.bechte.junit</groupId>
  214. <artifactId>junit-hierarchicalcontextrunner</artifactId>
  215. <scope>test</scope>
  216. </dependency>
  217. </dependencies>
  218. <modules>
  219. <module>commons</module>
  220. <module>keychain</module>
  221. <module>ui</module>
  222. <module>launcher</module>
  223. </modules>
  224. <profiles>
  225. <profile>
  226. <id>release</id>
  227. <modules>
  228. <module>uber-jar</module>
  229. <module>ant-kit</module>
  230. </modules>
  231. </profile>
  232. <profile>
  233. <id>coverage</id>
  234. <modules>
  235. <module>jacoco-report</module>
  236. </modules>
  237. <build>
  238. <plugins>
  239. <plugin>
  240. <groupId>org.jacoco</groupId>
  241. <artifactId>jacoco-maven-plugin</artifactId>
  242. </plugin>
  243. </plugins>
  244. </build>
  245. </profile>
  246. </profiles>
  247. <build>
  248. <pluginManagement>
  249. <plugins>
  250. <plugin>
  251. <artifactId>maven-dependency-plugin</artifactId>
  252. <version>3.0.2</version>
  253. <executions>
  254. <execution>
  255. <id>copy-libs</id>
  256. <goals>
  257. <goal>copy-dependencies</goal>
  258. </goals>
  259. <configuration>
  260. <outputDirectory>${project.build.directory}/libs</outputDirectory>
  261. <includeScope>runtime</includeScope>
  262. </configuration>
  263. </execution>
  264. </executions>
  265. </plugin>
  266. <plugin>
  267. <groupId>org.jacoco</groupId>
  268. <artifactId>jacoco-maven-plugin</artifactId>
  269. <version>0.7.9</version>
  270. <executions>
  271. <execution>
  272. <id>prepare-agent</id>
  273. <goals>
  274. <goal>prepare-agent</goal>
  275. </goals>
  276. </execution>
  277. </executions>
  278. <configuration>
  279. <excludes>
  280. <exclude>**/*_*</exclude>
  281. <exclude>**/Dagger*</exclude>
  282. </excludes>
  283. </configuration>
  284. </plugin>
  285. </plugins>
  286. </pluginManagement>
  287. <plugins>
  288. <plugin>
  289. <artifactId>maven-compiler-plugin</artifactId>
  290. <version>3.7.0</version>
  291. <configuration>
  292. <source>1.8</source>
  293. <target>1.8</target>
  294. </configuration>
  295. </plugin>
  296. </plugins>
  297. </build>
  298. </project>