pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Copyright (c) 2014 Sebastian Stenzel This file is licensed under the terms of the MIT license. See the LICENSE.txt file for more info. Contributors: Sebastian Stenzel - initial API and implementation -->
  3. <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">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>org.cryptomator</groupId>
  6. <artifactId>main</artifactId>
  7. <version>0.4.0-SNAPSHOT</version>
  8. <packaging>pom</packaging>
  9. <name>Cryptomator</name>
  10. <organization>
  11. <name>cryptomator.org</name>
  12. <url>http://cryptomator.org</url>
  13. </organization>
  14. <developers>
  15. <developer>
  16. <name>Sebastian Stenzel</name>
  17. <email>sebastian.stenzel@gmail.com</email>
  18. <timezone>+1</timezone>
  19. </developer>
  20. </developers>
  21. <properties>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. <!-- dependency versions -->
  24. <log4j.version>2.1</log4j.version>
  25. <slf4j.version>1.7.7</slf4j.version>
  26. <junit.version>4.12</junit.version>
  27. <commons-io.version>2.4</commons-io.version>
  28. <commons-collections.version>4.0</commons-collections.version>
  29. <commons-lang3.version>3.3.2</commons-lang3.version>
  30. <commons-codec.version>1.10</commons-codec.version>
  31. <jackson-databind.version>2.4.4</jackson-databind.version>
  32. </properties>
  33. <dependencyManagement>
  34. <dependencies>
  35. <!-- modules -->
  36. <dependency>
  37. <groupId>org.cryptomator</groupId>
  38. <artifactId>core</artifactId>
  39. <version>${project.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.cryptomator</groupId>
  43. <artifactId>crypto-api</artifactId>
  44. <version>${project.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.cryptomator</groupId>
  48. <artifactId>crypto-aes</artifactId>
  49. <version>${project.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.cryptomator</groupId>
  53. <artifactId>ui</artifactId>
  54. <version>${project.version}</version>
  55. </dependency>
  56. <!-- Logging -->
  57. <dependency>
  58. <groupId>org.slf4j</groupId>
  59. <artifactId>slf4j-api</artifactId>
  60. <version>${slf4j.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.logging.log4j</groupId>
  64. <artifactId>log4j-core</artifactId>
  65. <version>${log4j.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.logging.log4j</groupId>
  69. <artifactId>log4j-slf4j-impl</artifactId>
  70. <version>${log4j.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.apache.logging.log4j</groupId>
  74. <artifactId>log4j-jul</artifactId>
  75. <version>${log4j.version}</version>
  76. </dependency>
  77. <!-- commons -->
  78. <dependency>
  79. <groupId>commons-io</groupId>
  80. <artifactId>commons-io</artifactId>
  81. <version>${commons-io.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.commons</groupId>
  85. <artifactId>commons-collections4</artifactId>
  86. <version>${commons-collections.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.apache.commons</groupId>
  90. <artifactId>commons-lang3</artifactId>
  91. <version>${commons-lang3.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>commons-codec</groupId>
  95. <artifactId>commons-codec</artifactId>
  96. <version>${commons-codec.version}</version>
  97. </dependency>
  98. <!-- JSON -->
  99. <dependency>
  100. <groupId>com.fasterxml.jackson.core</groupId>
  101. <artifactId>jackson-databind</artifactId>
  102. <version>${jackson-databind.version}</version>
  103. </dependency>
  104. <!-- JUnit -->
  105. <dependency>
  106. <groupId>junit</groupId>
  107. <artifactId>junit</artifactId>
  108. <version>${junit.version}</version>
  109. <scope>test</scope>
  110. </dependency>
  111. </dependencies>
  112. </dependencyManagement>
  113. <dependencies>
  114. <dependency>
  115. <groupId>org.apache.logging.log4j</groupId>
  116. <artifactId>log4j-core</artifactId>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.logging.log4j</groupId>
  120. <artifactId>log4j-slf4j-impl</artifactId>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.apache.logging.log4j</groupId>
  124. <artifactId>log4j-jul</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>junit</groupId>
  128. <artifactId>junit</artifactId>
  129. </dependency>
  130. </dependencies>
  131. <modules>
  132. <module>crypto-api</module>
  133. <module>crypto-aes</module>
  134. <module>core</module>
  135. <module>ui</module>
  136. </modules>
  137. <build>
  138. <plugins>
  139. <plugin>
  140. <groupId>org.apache.maven.plugins</groupId>
  141. <artifactId>maven-compiler-plugin</artifactId>
  142. <version>3.2</version>
  143. <configuration>
  144. <source>1.8</source>
  145. <target>1.8</target>
  146. </configuration>
  147. </plugin>
  148. </plugins>
  149. </build>
  150. </project>