pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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.3.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. <junit.version>4.11</junit.version>
  29. <commons-io.version>2.4</commons-io.version>
  30. <commons-collections.version>4.0</commons-collections.version>
  31. <commons-lang3.version>3.1</commons-lang3.version>
  32. <commons-codec.version>1.9</commons-codec.version>
  33. </properties>
  34. <dependencyManagement>
  35. <dependencies>
  36. <!-- modules -->
  37. <dependency>
  38. <groupId>org.cryptomator</groupId>
  39. <artifactId>core</artifactId>
  40. <version>${project.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.cryptomator</groupId>
  44. <artifactId>crypto-api</artifactId>
  45. <version>${project.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.cryptomator</groupId>
  49. <artifactId>crypto-aes</artifactId>
  50. <version>${project.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.cryptomator</groupId>
  54. <artifactId>ui</artifactId>
  55. <version>${project.version}</version>
  56. </dependency>
  57. <!-- Logging -->
  58. <dependency>
  59. <groupId>org.apache.logging.log4j</groupId>
  60. <artifactId>log4j-core</artifactId>
  61. <version>${log4j.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.logging.log4j</groupId>
  65. <artifactId>log4j-slf4j-impl</artifactId>
  66. <version>${log4j.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.logging.log4j</groupId>
  70. <artifactId>log4j-jul</artifactId>
  71. <version>${log4j.version}</version>
  72. </dependency>
  73. <!-- commons -->
  74. <dependency>
  75. <groupId>commons-io</groupId>
  76. <artifactId>commons-io</artifactId>
  77. <version>${commons-io.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.commons</groupId>
  81. <artifactId>commons-collections4</artifactId>
  82. <version>${commons-collections.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.apache.commons</groupId>
  86. <artifactId>commons-lang3</artifactId>
  87. <version>${commons-lang3.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>commons-codec</groupId>
  91. <artifactId>commons-codec</artifactId>
  92. <version>${commons-codec.version}</version>
  93. </dependency>
  94. <!-- JSON -->
  95. <dependency>
  96. <groupId>com.fasterxml.jackson.core</groupId>
  97. <artifactId>jackson-databind</artifactId>
  98. <version>2.4.2</version>
  99. </dependency>
  100. <!-- JUnit -->
  101. <dependency>
  102. <groupId>junit</groupId>
  103. <artifactId>junit</artifactId>
  104. <version>4.11</version>
  105. <scope>test</scope>
  106. </dependency>
  107. </dependencies>
  108. </dependencyManagement>
  109. <dependencies>
  110. <dependency>
  111. <groupId>org.apache.logging.log4j</groupId>
  112. <artifactId>log4j-core</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.apache.logging.log4j</groupId>
  116. <artifactId>log4j-slf4j-impl</artifactId>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.logging.log4j</groupId>
  120. <artifactId>log4j-jul</artifactId>
  121. </dependency>
  122. <dependency>
  123. <groupId>junit</groupId>
  124. <artifactId>junit</artifactId>
  125. </dependency>
  126. </dependencies>
  127. <modules>
  128. <module>crypto-api</module>
  129. <module>crypto-aes</module>
  130. <module>core</module>
  131. <module>ui</module>
  132. </modules>
  133. </project>