pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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>de.sebastianstenzel.oce</groupId>
  12. <artifactId>oce-main</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <packaging>pom</packaging>
  15. <name>Open Cloud Encryptor</name>
  16. <organization>
  17. <name>sebastianstenzel.de</name>
  18. </organization>
  19. <properties>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <project.java.version>1.8</project.java.version>
  22. <!-- dependency versions -->
  23. <log4j.version>1.2.16</log4j.version>
  24. <slf4j.version>1.7.5</slf4j.version>
  25. <junit.version>4.11</junit.version>
  26. <commons-io.version>2.4</commons-io.version>
  27. <commons-collections.version>4.0</commons-collections.version>
  28. <commons-lang.version>3.1</commons-lang.version>
  29. </properties>
  30. <developers>
  31. <developer>
  32. <name>Sebastian Stenzel</name>
  33. <email>mail@sebastianstenzel.de</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-lang.version}</version>
  69. </dependency>
  70. <!-- JSON -->
  71. <dependency>
  72. <groupId>com.fasterxml.jackson.core</groupId>
  73. <artifactId>jackson-databind</artifactId>
  74. <version>2.3.0</version>
  75. </dependency>
  76. <!-- JUnit -->
  77. <dependency>
  78. <groupId>junit</groupId>
  79. <artifactId>junit</artifactId>
  80. <version>4.11</version>
  81. <scope>test</scope>
  82. </dependency>
  83. </dependencies>
  84. </dependencyManagement>
  85. <modules>
  86. <module>oce-webdav</module>
  87. <module>oce-ui</module>
  88. <module>oce-crypto</module>
  89. </modules>
  90. <build>
  91. <pluginManagement>
  92. <plugins>
  93. <plugin>
  94. <groupId>org.apache.maven.plugins</groupId>
  95. <artifactId>maven-compiler-plugin</artifactId>
  96. <version>3.1</version>
  97. <configuration>
  98. <source>${project.java.version}</source>
  99. <target>${project.java.version}</target>
  100. </configuration>
  101. </plugin>
  102. </plugins>
  103. </pluginManagement>
  104. </build>
  105. </project>