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>1.1.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. <dagger.version>2.0.2</dagger.version>
  40. </properties>
  41. <repositories>
  42. <repository>
  43. <id>jitpack.io</id>
  44. <url>https://jitpack.io</url>
  45. </repository>
  46. </repositories>
  47. <dependencyManagement>
  48. <dependencies>
  49. <!-- modules -->
  50. <dependency>
  51. <groupId>org.cryptomator</groupId>
  52. <artifactId>commons</artifactId>
  53. <version>${project.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.cryptomator</groupId>
  57. <artifactId>commons-test</artifactId>
  58. <version>${project.version}</version>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.cryptomator</groupId>
  63. <artifactId>filesystem-api</artifactId>
  64. <version>${project.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.cryptomator</groupId>
  68. <artifactId>filesystem-nio</artifactId>
  69. <version>${project.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.cryptomator</groupId>
  73. <artifactId>filesystem-inmemory</artifactId>
  74. <version>${project.version}</version>
  75. <scope>test</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.cryptomator</groupId>
  79. <artifactId>filesystem-nameshortening</artifactId>
  80. <version>${project.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.cryptomator</groupId>
  84. <artifactId>filesystem-crypto</artifactId>
  85. <version>${project.version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.cryptomator</groupId>
  89. <artifactId>filesystem-crypto-integration-tests</artifactId>
  90. <version>${project.version}</version>
  91. <scope>test</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.cryptomator</groupId>
  95. <artifactId>filesystem-stats</artifactId>
  96. <version>${project.version}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.cryptomator</groupId>
  100. <artifactId>frontend-api</artifactId>
  101. <version>${project.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.cryptomator</groupId>
  105. <artifactId>frontend-webdav</artifactId>
  106. <version>${project.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.cryptomator</groupId>
  110. <artifactId>ui</artifactId>
  111. <version>${project.version}</version>
  112. </dependency>
  113. <!-- Logging -->
  114. <dependency>
  115. <groupId>org.slf4j</groupId>
  116. <artifactId>slf4j-api</artifactId>
  117. <version>${slf4j.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.logging.log4j</groupId>
  121. <artifactId>log4j-core</artifactId>
  122. <version>${log4j.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.apache.logging.log4j</groupId>
  126. <artifactId>log4j-slf4j-impl</artifactId>
  127. <version>${log4j.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.apache.logging.log4j</groupId>
  131. <artifactId>log4j-jul</artifactId>
  132. <version>${log4j.version}</version>
  133. </dependency>
  134. <!-- commons -->
  135. <dependency>
  136. <groupId>commons-io</groupId>
  137. <artifactId>commons-io</artifactId>
  138. <version>${commons-io.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.apache.commons</groupId>
  142. <artifactId>commons-collections4</artifactId>
  143. <version>${commons-collections.version}</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.apache.commons</groupId>
  147. <artifactId>commons-lang3</artifactId>
  148. <version>${commons-lang3.version}</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>commons-codec</groupId>
  152. <artifactId>commons-codec</artifactId>
  153. <version>${commons-codec.version}</version>
  154. </dependency>
  155. <dependency>
  156. <!-- org.apache.httpcomponents:httpclient is newer, but jackrabbit uses
  157. this version. We don't have a reason to upgrade -->
  158. <groupId>commons-httpclient</groupId>
  159. <artifactId>commons-httpclient</artifactId>
  160. <version>${commons-httpclient.version}</version>
  161. </dependency>
  162. <!-- EasyBind -->
  163. <dependency>
  164. <groupId>org.fxmisc.easybind</groupId>
  165. <artifactId>easybind</artifactId>
  166. <version>1.0.3</version>
  167. </dependency>
  168. <!-- Guava -->
  169. <dependency>
  170. <groupId>com.google.guava</groupId>
  171. <artifactId>guava</artifactId>
  172. <version>19.0</version>
  173. </dependency>
  174. <!-- DI -->
  175. <dependency>
  176. <groupId>com.google.dagger</groupId>
  177. <artifactId>dagger</artifactId>
  178. <version>${dagger.version}</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>com.google.dagger</groupId>
  182. <artifactId>dagger-compiler</artifactId>
  183. <version>${dagger.version}</version>
  184. <scope>provided</scope>
  185. </dependency>
  186. <!-- JSON -->
  187. <dependency>
  188. <groupId>com.fasterxml.jackson.core</groupId>
  189. <artifactId>jackson-databind</artifactId>
  190. <version>${jackson-databind.version}</version>
  191. </dependency>
  192. <!-- JUnit / Mockito / Hamcrest -->
  193. <dependency>
  194. <groupId>junit</groupId>
  195. <artifactId>junit</artifactId>
  196. <version>${junit.version}</version>
  197. <exclusions>
  198. <exclusion>
  199. <artifactId>hamcrest-core</artifactId>
  200. <groupId>org.hamcrest</groupId>
  201. </exclusion>
  202. </exclusions>
  203. </dependency>
  204. <dependency>
  205. <groupId>de.bechte.junit</groupId>
  206. <artifactId>junit-hierarchicalcontextrunner</artifactId>
  207. <version>${junit.hierarchicalrunner.version}</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.mockito</groupId>
  211. <artifactId>mockito-core</artifactId>
  212. <version>${mockito.version}</version>
  213. <exclusions>
  214. <exclusion>
  215. <artifactId>hamcrest-core</artifactId>
  216. <groupId>org.hamcrest</groupId>
  217. </exclusion>
  218. </exclusions>
  219. </dependency>
  220. <dependency>
  221. <groupId>org.hamcrest</groupId>
  222. <artifactId>hamcrest-all</artifactId>
  223. <version>${hamcrest.version}</version>
  224. </dependency>
  225. </dependencies>
  226. </dependencyManagement>
  227. <dependencies>
  228. <dependency>
  229. <groupId>org.apache.logging.log4j</groupId>
  230. <artifactId>log4j-core</artifactId>
  231. </dependency>
  232. <dependency>
  233. <groupId>org.apache.logging.log4j</groupId>
  234. <artifactId>log4j-slf4j-impl</artifactId>
  235. </dependency>
  236. <dependency>
  237. <groupId>org.apache.logging.log4j</groupId>
  238. <artifactId>log4j-jul</artifactId>
  239. </dependency>
  240. </dependencies>
  241. <modules>
  242. <module>commons</module>
  243. <module>commons-test</module>
  244. <module>filesystem-api</module>
  245. <module>filesystem-inmemory</module>
  246. <module>filesystem-nio</module>
  247. <module>filesystem-nameshortening</module>
  248. <module>filesystem-crypto</module>
  249. <module>filesystem-crypto-integration-tests</module>
  250. <module>filesystem-stats</module>
  251. <module>filesystem-invariants-tests</module>
  252. <module>frontend-api</module>
  253. <module>frontend-webdav</module>
  254. <module>ui</module>
  255. </modules>
  256. <profiles>
  257. <profile>
  258. <id>uber-jar</id>
  259. <modules>
  260. <module>uber-jar</module>
  261. </modules>
  262. </profile>
  263. </profiles>
  264. <build>
  265. <pluginManagement>
  266. <plugins>
  267. <plugin>
  268. <groupId>org.apache.maven.plugins</groupId>
  269. <artifactId>maven-dependency-plugin</artifactId>
  270. <executions>
  271. <execution>
  272. <id>copy-libs</id>
  273. <goals>
  274. <goal>copy-dependencies</goal>
  275. </goals>
  276. <configuration>
  277. <outputDirectory>${project.build.directory}/libs</outputDirectory>
  278. <includeScope>runtime</includeScope>
  279. </configuration>
  280. </execution>
  281. </executions>
  282. </plugin>
  283. <plugin>
  284. <groupId>org.jacoco</groupId>
  285. <artifactId>jacoco-maven-plugin</artifactId>
  286. <version>0.7.5.201505241946</version>
  287. <executions>
  288. <execution>
  289. <id>prepare-agent</id>
  290. <goals>
  291. <goal>prepare-agent</goal>
  292. </goals>
  293. </execution>
  294. </executions>
  295. </plugin>
  296. </plugins>
  297. </pluginManagement>
  298. <plugins>
  299. <plugin>
  300. <groupId>org.apache.maven.plugins</groupId>
  301. <artifactId>maven-compiler-plugin</artifactId>
  302. <version>3.2</version>
  303. <configuration>
  304. <source>1.8</source>
  305. <target>1.8</target>
  306. </configuration>
  307. </plugin>
  308. <plugin>
  309. <groupId>org.eluder.coveralls</groupId>
  310. <artifactId>coveralls-maven-plugin</artifactId>
  311. <version>4.0.0</version>
  312. <configuration>
  313. <repoToken>${env.COVERALLS_REPO_TOKEN}</repoToken>
  314. </configuration>
  315. </plugin>
  316. </plugins>
  317. </build>
  318. </project>