pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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.7</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. <!-- Will be included in Java 8. Until then we need this dependency -->
  30. <javafx.version>2.2</javafx.version>
  31. <jdk.home>/Library/Java/JavaVirtualMachines/jdk1.7.0_45.jdk/Contents/Home</jdk.home>
  32. <javafx.runtime.lib.jar>${jdk.home}/jre/lib/jfxrt.jar</javafx.runtime.lib.jar>
  33. <javafx.tools.ant.jar>${jdk.home}/lib/ant-javafx.jar</javafx.tools.ant.jar>
  34. </properties>
  35. <developers>
  36. <developer>
  37. <name>Sebastian Stenzel</name>
  38. <email>mail@sebastianstenzel.de</email>
  39. </developer>
  40. </developers>
  41. <dependencyManagement>
  42. <dependencies>
  43. <!-- Logging -->
  44. <dependency>
  45. <groupId>log4j</groupId>
  46. <artifactId>log4j</artifactId>
  47. <version>${log4j.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.slf4j</groupId>
  51. <artifactId>slf4j-api</artifactId>
  52. <version>${slf4j.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.slf4j</groupId>
  56. <artifactId>slf4j-log4j12</artifactId>
  57. <version>${slf4j.version}</version>
  58. </dependency>
  59. <!-- commons -->
  60. <dependency>
  61. <groupId>commons-io</groupId>
  62. <artifactId>commons-io</artifactId>
  63. <version>${commons-io.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.commons</groupId>
  67. <artifactId>commons-collections4</artifactId>
  68. <version>${commons-collections.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.commons</groupId>
  72. <artifactId>commons-lang3</artifactId>
  73. <version>${commons-lang.version}</version>
  74. </dependency>
  75. <!-- JSON -->
  76. <dependency>
  77. <groupId>com.fasterxml.jackson.core</groupId>
  78. <artifactId>jackson-databind</artifactId>
  79. <version>2.3.0</version>
  80. </dependency>
  81. <!-- JavaFX -->
  82. <dependency>
  83. <groupId>com.oracle</groupId>
  84. <artifactId>javafx</artifactId>
  85. <version>${javafx.version}</version>
  86. <systemPath>${javafx.runtime.lib.jar}</systemPath>
  87. <scope>system</scope>
  88. </dependency>
  89. <!-- JUnit -->
  90. <dependency>
  91. <groupId>junit</groupId>
  92. <artifactId>junit</artifactId>
  93. <version>4.11</version>
  94. <scope>test</scope>
  95. </dependency>
  96. </dependencies>
  97. </dependencyManagement>
  98. <modules>
  99. <module>oce-webdav</module>
  100. <module>oce-ui</module>
  101. <module>oce-crypto</module>
  102. </modules>
  103. <build>
  104. <pluginManagement>
  105. <plugins>
  106. <plugin>
  107. <groupId>org.apache.maven.plugins</groupId>
  108. <artifactId>maven-compiler-plugin</artifactId>
  109. <version>3.0</version>
  110. <configuration>
  111. <source>${project.java.version}</source>
  112. <target>${project.java.version}</target>
  113. </configuration>
  114. </plugin>
  115. </plugins>
  116. </pluginManagement>
  117. </build>
  118. </project>