pom.xml 3.9 KB

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