pom.xml 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Copyright (c) 2014 Sebastian Stenzel This file is licensed under the
  3. terms of the MIT license. See the LICENSE.txt file for more info. Contributors:
  4. Sebastian Stenzel - initial API and implementation -->
  5. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  6. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  7. <modelVersion>4.0.0</modelVersion>
  8. <groupId>org.cryptomator</groupId>
  9. <artifactId>main</artifactId>
  10. <version>0.11.0-SNAPSHOT</version>
  11. <packaging>pom</packaging>
  12. <name>Cryptomator</name>
  13. <organization>
  14. <name>cryptomator.org</name>
  15. <url>http://cryptomator.org</url>
  16. </organization>
  17. <developers>
  18. <developer>
  19. <name>Sebastian Stenzel</name>
  20. <email>sebastian.stenzel@gmail.com</email>
  21. <timezone>+1</timezone>
  22. </developer>
  23. </developers>
  24. <properties>
  25. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  26. <!-- dependency versions -->
  27. <log4j.version>2.1</log4j.version>
  28. <slf4j.version>1.7.7</slf4j.version>
  29. <junit.version>4.12</junit.version>
  30. <junit.hierarchicalrunner.version>4.12.1</junit.hierarchicalrunner.version>
  31. <hamcrest.version>1.3</hamcrest.version> <!-- keep in sync with version required by JUnit -->
  32. <commons-io.version>2.4</commons-io.version>
  33. <commons-collections.version>4.0</commons-collections.version>
  34. <commons-lang3.version>3.3.2</commons-lang3.version>
  35. <commons-codec.version>1.10</commons-codec.version>
  36. <commons-httpclient.version>3.1</commons-httpclient.version>
  37. <jackson-databind.version>2.4.4</jackson-databind.version>
  38. <mockito.version>1.10.19</mockito.version>
  39. </properties>
  40. <repositories>
  41. <repository>
  42. <id>jitpack.io</id>
  43. <url>https://jitpack.io</url>
  44. </repository>
  45. </repositories>
  46. <dependencyManagement>
  47. <dependencies>
  48. <!-- modules -->
  49. <dependency>
  50. <groupId>org.cryptomator</groupId>
  51. <artifactId>commons</artifactId>
  52. <version>${project.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.cryptomator</groupId>
  56. <artifactId>commons-test</artifactId>
  57. <version>${project.version}</version>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.cryptomator</groupId>
  62. <artifactId>filesystem-api</artifactId>
  63. <version>${project.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.cryptomator</groupId>
  67. <artifactId>filesystem-nio</artifactId>
  68. <version>${project.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.cryptomator</groupId>
  72. <artifactId>filesystem-inmemory</artifactId>
  73. <version>${project.version}</version>
  74. <scope>test</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.cryptomator</groupId>
  78. <artifactId>filesystem-nameshortening</artifactId>
  79. <version>${project.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.cryptomator</groupId>
  83. <artifactId>filesystem-crypto</artifactId>
  84. <version>${project.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.cryptomator</groupId>
  88. <artifactId>filesystem-crypto-integration-tests</artifactId>
  89. <version>${project.version}</version>
  90. <scope>test</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.cryptomator</groupId>
  94. <artifactId>filesystem-stats</artifactId>
  95. <version>${project.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.cryptomator</groupId>
  99. <artifactId>frontend-api</artifactId>
  100. <version>${project.version}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.cryptomator</groupId>
  104. <artifactId>frontend-webdav</artifactId>
  105. <version>${project.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.cryptomator</groupId>
  109. <artifactId>ui</artifactId>
  110. <version>${project.version}</version>
  111. </dependency>
  112. <!-- Logging -->
  113. <dependency>
  114. <groupId>org.slf4j</groupId>
  115. <artifactId>slf4j-api</artifactId>
  116. <version>${slf4j.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.logging.log4j</groupId>
  120. <artifactId>log4j-core</artifactId>
  121. <version>${log4j.version}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.apache.logging.log4j</groupId>
  125. <artifactId>log4j-slf4j-impl</artifactId>
  126. <version>${log4j.version}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.apache.logging.log4j</groupId>
  130. <artifactId>log4j-jul</artifactId>
  131. <version>${log4j.version}</version>
  132. </dependency>
  133. <!-- commons -->
  134. <dependency>
  135. <groupId>commons-io</groupId>
  136. <artifactId>commons-io</artifactId>
  137. <version>${commons-io.version}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.apache.commons</groupId>
  141. <artifactId>commons-collections4</artifactId>
  142. <version>${commons-collections.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.apache.commons</groupId>
  146. <artifactId>commons-lang3</artifactId>
  147. <version>${commons-lang3.version}</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>commons-codec</groupId>
  151. <artifactId>commons-codec</artifactId>
  152. <version>${commons-codec.version}</version>
  153. </dependency>
  154. <dependency>
  155. <!-- org.apache.httpcomponents:httpclient is newer, but jackrabbit uses
  156. this version. We don't have a reason to upgrade -->
  157. <groupId>commons-httpclient</groupId>
  158. <artifactId>commons-httpclient</artifactId>
  159. <version>${commons-httpclient.version}</version>
  160. </dependency>
  161. <!-- Guava -->
  162. <dependency>
  163. <groupId>com.google.guava</groupId>
  164. <artifactId>guava</artifactId>
  165. <version>19.0</version>
  166. </dependency>
  167. <!-- DI -->
  168. <dependency>
  169. <groupId>com.google.dagger</groupId>
  170. <artifactId>dagger</artifactId>
  171. <version>2.0.2</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>com.google.dagger</groupId>
  175. <artifactId>dagger-compiler</artifactId>
  176. <version>2.0.2</version>
  177. <scope>provided</scope>
  178. </dependency>
  179. <!-- JSON -->
  180. <dependency>
  181. <groupId>com.fasterxml.jackson.core</groupId>
  182. <artifactId>jackson-databind</artifactId>
  183. <version>${jackson-databind.version}</version>
  184. </dependency>
  185. <!-- JUnit / Mockito / Hamcrest -->
  186. <dependency>
  187. <groupId>junit</groupId>
  188. <artifactId>junit</artifactId>
  189. <version>${junit.version}</version>
  190. <exclusions>
  191. <exclusion>
  192. <artifactId>hamcrest-core</artifactId>
  193. <groupId>org.hamcrest</groupId>
  194. </exclusion>
  195. </exclusions>
  196. </dependency>
  197. <dependency>
  198. <groupId>de.bechte.junit</groupId>
  199. <artifactId>junit-hierarchicalcontextrunner</artifactId>
  200. <version>${junit.hierarchicalrunner.version}</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.mockito</groupId>
  204. <artifactId>mockito-core</artifactId>
  205. <version>${mockito.version}</version>
  206. <exclusions>
  207. <exclusion>
  208. <artifactId>hamcrest-core</artifactId>
  209. <groupId>org.hamcrest</groupId>
  210. </exclusion>
  211. </exclusions>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.hamcrest</groupId>
  215. <artifactId>hamcrest-all</artifactId>
  216. <version>${hamcrest.version}</version>
  217. </dependency>
  218. </dependencies>
  219. </dependencyManagement>
  220. <dependencies>
  221. <dependency>
  222. <groupId>org.apache.logging.log4j</groupId>
  223. <artifactId>log4j-core</artifactId>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.apache.logging.log4j</groupId>
  227. <artifactId>log4j-slf4j-impl</artifactId>
  228. </dependency>
  229. <dependency>
  230. <groupId>org.apache.logging.log4j</groupId>
  231. <artifactId>log4j-jul</artifactId>
  232. </dependency>
  233. <dependency>
  234. <groupId>junit</groupId>
  235. <artifactId>junit</artifactId>
  236. </dependency>
  237. <dependency>
  238. <groupId>org.mockito</groupId>
  239. <artifactId>mockito-core</artifactId>
  240. </dependency>
  241. </dependencies>
  242. <modules>
  243. <module>commons</module>
  244. <module>commons-test</module>
  245. <module>filesystem-api</module>
  246. <module>filesystem-inmemory</module>
  247. <module>filesystem-nio</module>
  248. <module>filesystem-nameshortening</module>
  249. <module>filesystem-crypto</module>
  250. <module>filesystem-crypto-integration-tests</module>
  251. <module>filesystem-stats</module>
  252. <module>filesystem-invariants-tests</module>
  253. <module>frontend-api</module>
  254. <module>frontend-webdav</module>
  255. <module>ui</module>
  256. </modules>
  257. <profiles>
  258. <profile>
  259. <id>uber-jar</id>
  260. <modules>
  261. <module>uber-jar</module>
  262. </modules>
  263. </profile>
  264. </profiles>
  265. <build>
  266. <pluginManagement>
  267. <plugins>
  268. <plugin>
  269. <groupId>org.apache.maven.plugins</groupId>
  270. <artifactId>maven-dependency-plugin</artifactId>
  271. <executions>
  272. <execution>
  273. <id>copy-libs</id>
  274. <goals>
  275. <goal>copy-dependencies</goal>
  276. </goals>
  277. <configuration>
  278. <outputDirectory>${project.build.directory}/libs</outputDirectory>
  279. <includeScope>runtime</includeScope>
  280. </configuration>
  281. </execution>
  282. </executions>
  283. </plugin>
  284. <plugin>
  285. <groupId>org.jacoco</groupId>
  286. <artifactId>jacoco-maven-plugin</artifactId>
  287. <version>0.7.5.201505241946</version>
  288. <executions>
  289. <execution>
  290. <id>prepare-agent</id>
  291. <goals>
  292. <goal>prepare-agent</goal>
  293. </goals>
  294. </execution>
  295. </executions>
  296. </plugin>
  297. </plugins>
  298. </pluginManagement>
  299. <plugins>
  300. <plugin>
  301. <groupId>org.apache.maven.plugins</groupId>
  302. <artifactId>maven-compiler-plugin</artifactId>
  303. <version>3.2</version>
  304. <configuration>
  305. <source>1.8</source>
  306. <target>1.8</target>
  307. </configuration>
  308. </plugin>
  309. <plugin>
  310. <groupId>org.eluder.coveralls</groupId>
  311. <artifactId>coveralls-maven-plugin</artifactId>
  312. <version>4.0.0</version>
  313. <configuration>
  314. <repoToken>${env.COVERALLS_REPO_TOKEN}</repoToken>
  315. </configuration>
  316. </plugin>
  317. </plugins>
  318. </build>
  319. </project>