pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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.1.0-SNAPSHOT</version>
  14. <packaging>pom</packaging>
  15. <name>Cryptomator</name>
  16. <organization>
  17. <name>cryptomator.org</name>
  18. </organization>
  19. <properties>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <!-- dependency versions -->
  22. <log4j.version>1.2.16</log4j.version>
  23. <slf4j.version>1.7.5</slf4j.version>
  24. <junit.version>4.11</junit.version>
  25. <commons-io.version>2.4</commons-io.version>
  26. <commons-collections.version>4.0</commons-collections.version>
  27. <commons-lang3.version>3.1</commons-lang3.version>
  28. <commons-codec.version>1.9</commons-codec.version>
  29. </properties>
  30. <developers>
  31. <developer>
  32. <name>Sebastian Stenzel</name>
  33. <email>sebastian.stenzel@gmail.com</email>
  34. </developer>
  35. </developers>
  36. <dependencyManagement>
  37. <dependencies>
  38. <!-- Logging -->
  39. <dependency>
  40. <groupId>log4j</groupId>
  41. <artifactId>log4j</artifactId>
  42. <version>${log4j.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.slf4j</groupId>
  46. <artifactId>slf4j-api</artifactId>
  47. <version>${slf4j.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.slf4j</groupId>
  51. <artifactId>slf4j-log4j12</artifactId>
  52. <version>${slf4j.version}</version>
  53. </dependency>
  54. <!-- commons -->
  55. <dependency>
  56. <groupId>commons-io</groupId>
  57. <artifactId>commons-io</artifactId>
  58. <version>${commons-io.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.commons</groupId>
  62. <artifactId>commons-collections4</artifactId>
  63. <version>${commons-collections.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.commons</groupId>
  67. <artifactId>commons-lang3</artifactId>
  68. <version>${commons-lang3.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>commons-codec</groupId>
  72. <artifactId>commons-codec</artifactId>
  73. <version>${commons-codec.version}</version>
  74. </dependency>
  75. <!-- JSON -->
  76. <dependency>
  77. <groupId>com.fasterxml.jackson.core</groupId>
  78. <artifactId>jackson-databind</artifactId>
  79. <version>2.4.2</version>
  80. </dependency>
  81. <!-- JUnit -->
  82. <dependency>
  83. <groupId>junit</groupId>
  84. <artifactId>junit</artifactId>
  85. <version>4.11</version>
  86. <scope>test</scope>
  87. </dependency>
  88. </dependencies>
  89. </dependencyManagement>
  90. <modules>
  91. <module>crypto-api</module>
  92. <module>crypto-aes</module>
  93. <module>core</module>
  94. <module>ui</module>
  95. </modules>
  96. </project>