pom.xml 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (c) 2014 Sebastian Stenzel
  4. This file is licensed under the terms of the MIT license.
  5. See the LICENSE.txt file for more info.
  6. Contributors:
  7. Sebastian Stenzel - initial API and implementation
  8. -->
  9. <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">
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>org.cryptomator</groupId>
  12. <artifactId>main</artifactId>
  13. <version>0.11.0-SNAPSHOT</version>
  14. <packaging>pom</packaging>
  15. <name>Cryptomator</name>
  16. <organization>
  17. <name>cryptomator.org</name>
  18. <url>http://cryptomator.org</url>
  19. </organization>
  20. <developers>
  21. <developer>
  22. <name>Sebastian Stenzel</name>
  23. <email>sebastian.stenzel@gmail.com</email>
  24. <timezone>+1</timezone>
  25. </developer>
  26. </developers>
  27. <properties>
  28. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  29. <!-- dependency versions -->
  30. <log4j.version>2.1</log4j.version>
  31. <slf4j.version>1.7.7</slf4j.version>
  32. <junit.version>4.12</junit.version>
  33. <commons-io.version>2.4</commons-io.version>
  34. <commons-collections.version>4.0</commons-collections.version>
  35. <commons-lang3.version>3.3.2</commons-lang3.version>
  36. <commons-codec.version>1.10</commons-codec.version>
  37. <commons-httpclient.version>3.1</commons-httpclient.version>
  38. <jackson-databind.version>2.4.4</jackson-databind.version>
  39. <mockito.version>1.10.19</mockito.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>core</artifactId>
  53. <version>${project.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.cryptomator</groupId>
  57. <artifactId>crypto-api</artifactId>
  58. <version>${project.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.cryptomator</groupId>
  62. <artifactId>crypto-aes</artifactId>
  63. <version>${project.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.cryptomator</groupId>
  67. <artifactId>ui</artifactId>
  68. <version>${project.version}</version>
  69. </dependency>
  70. <!-- Logging -->
  71. <dependency>
  72. <groupId>org.slf4j</groupId>
  73. <artifactId>slf4j-api</artifactId>
  74. <version>${slf4j.version}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.logging.log4j</groupId>
  78. <artifactId>log4j-core</artifactId>
  79. <version>${log4j.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.logging.log4j</groupId>
  83. <artifactId>log4j-slf4j-impl</artifactId>
  84. <version>${log4j.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.logging.log4j</groupId>
  88. <artifactId>log4j-jul</artifactId>
  89. <version>${log4j.version}</version>
  90. </dependency>
  91. <!-- commons -->
  92. <dependency>
  93. <groupId>commons-io</groupId>
  94. <artifactId>commons-io</artifactId>
  95. <version>${commons-io.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.apache.commons</groupId>
  99. <artifactId>commons-collections4</artifactId>
  100. <version>${commons-collections.version}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.commons</groupId>
  104. <artifactId>commons-lang3</artifactId>
  105. <version>${commons-lang3.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>commons-codec</groupId>
  109. <artifactId>commons-codec</artifactId>
  110. <version>${commons-codec.version}</version>
  111. </dependency>
  112. <dependency>
  113. <!-- org.apache.httpcomponents:httpclient is newer, but jackrabbit uses this version. We don't have a reason to upgrade -->
  114. <groupId>commons-httpclient</groupId>
  115. <artifactId>commons-httpclient</artifactId>
  116. <version>${commons-httpclient.version}</version>
  117. </dependency>
  118. <!-- Guava -->
  119. <dependency>
  120. <groupId>com.google.guava</groupId>
  121. <artifactId>guava</artifactId>
  122. <version>18.0</version>
  123. </dependency>
  124. <!-- DI -->
  125. <dependency>
  126. <groupId>com.google.dagger</groupId>
  127. <artifactId>dagger</artifactId>
  128. <version>2.0.2</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.google.dagger</groupId>
  132. <artifactId>dagger-compiler</artifactId>
  133. <version>2.0.2</version>
  134. <scope>provided</scope>
  135. </dependency>
  136. <!-- JSON -->
  137. <dependency>
  138. <groupId>com.fasterxml.jackson.core</groupId>
  139. <artifactId>jackson-databind</artifactId>
  140. <version>${jackson-databind.version}</version>
  141. </dependency>
  142. <!-- JUnit / Mockito -->
  143. <dependency>
  144. <groupId>junit</groupId>
  145. <artifactId>junit</artifactId>
  146. <version>${junit.version}</version>
  147. <scope>test</scope>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.mockito</groupId>
  151. <artifactId>mockito-core</artifactId>
  152. <version>${mockito.version}</version>
  153. <scope>test</scope>
  154. </dependency>
  155. </dependencies>
  156. </dependencyManagement>
  157. <dependencies>
  158. <dependency>
  159. <groupId>org.apache.logging.log4j</groupId>
  160. <artifactId>log4j-core</artifactId>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.apache.logging.log4j</groupId>
  164. <artifactId>log4j-slf4j-impl</artifactId>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.apache.logging.log4j</groupId>
  168. <artifactId>log4j-jul</artifactId>
  169. </dependency>
  170. <dependency>
  171. <groupId>junit</groupId>
  172. <artifactId>junit</artifactId>
  173. </dependency>
  174. <dependency>
  175. <groupId>org.mockito</groupId>
  176. <artifactId>mockito-core</artifactId>
  177. </dependency>
  178. </dependencies>
  179. <modules>
  180. <module>crypto-api</module>
  181. <module>crypto-aes</module>
  182. <module>core</module>
  183. <module>ui</module>
  184. </modules>
  185. <profiles>
  186. <profile>
  187. <id>uber-jar</id>
  188. <modules>
  189. <module>uber-jar</module>
  190. </modules>
  191. </profile>
  192. </profiles>
  193. <build>
  194. <pluginManagement>
  195. <plugins>
  196. <plugin>
  197. <groupId>org.apache.maven.plugins</groupId>
  198. <artifactId>maven-dependency-plugin</artifactId>
  199. <executions>
  200. <execution>
  201. <id>copy-libs</id>
  202. <goals>
  203. <goal>copy-dependencies</goal>
  204. </goals>
  205. <configuration>
  206. <outputDirectory>${project.build.directory}/libs</outputDirectory>
  207. <includeScope>runtime</includeScope>
  208. </configuration>
  209. </execution>
  210. </executions>
  211. </plugin>
  212. <plugin>
  213. <groupId>org.jacoco</groupId>
  214. <artifactId>jacoco-maven-plugin</artifactId>
  215. <version>0.7.5.201505241946</version>
  216. <executions>
  217. <execution>
  218. <id>prepare-agent</id>
  219. <goals>
  220. <goal>prepare-agent</goal>
  221. </goals>
  222. </execution>
  223. </executions>
  224. </plugin>
  225. </plugins>
  226. </pluginManagement>
  227. <plugins>
  228. <plugin>
  229. <groupId>org.apache.maven.plugins</groupId>
  230. <artifactId>maven-compiler-plugin</artifactId>
  231. <version>3.2</version>
  232. <configuration>
  233. <source>1.8</source>
  234. <target>1.8</target>
  235. </configuration>
  236. </plugin>
  237. <plugin>
  238. <groupId>org.eluder.coveralls</groupId>
  239. <artifactId>coveralls-maven-plugin</artifactId>
  240. <version>4.0.0</version>
  241. <configuration>
  242. <repoToken>${env.COVERALLS_REPO_TOKEN}</repoToken>
  243. </configuration>
  244. </plugin>
  245. </plugins>
  246. </build>
  247. </project>