pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. <parent>
  12. <groupId>de.sebastianstenzel.oce</groupId>
  13. <artifactId>oce-main</artifactId>
  14. <version>0.1.0-SNAPSHOT</version>
  15. </parent>
  16. <artifactId>oce-crypto-aes</artifactId>
  17. <name>Open Cloud Encryptor cryptographic module (AES)</name>
  18. <description>Provides stream ciphers and filename pseudonymization functions.</description>
  19. <dependencies>
  20. <dependency>
  21. <groupId>de.sebastianstenzel.oce</groupId>
  22. <artifactId>oce-crypto-api</artifactId>
  23. <version>${project.parent.version}</version>
  24. </dependency>
  25. <!-- Logging -->
  26. <dependency>
  27. <groupId>org.slf4j</groupId>
  28. <artifactId>slf4j-log4j12</artifactId>
  29. </dependency>
  30. <!-- Commons -->
  31. <dependency>
  32. <groupId>commons-io</groupId>
  33. <artifactId>commons-io</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.commons</groupId>
  37. <artifactId>commons-collections4</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.commons</groupId>
  41. <artifactId>commons-lang3</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>commons-codec</groupId>
  45. <artifactId>commons-codec</artifactId>
  46. </dependency>
  47. <!-- JSON -->
  48. <dependency>
  49. <groupId>com.fasterxml.jackson.core</groupId>
  50. <artifactId>jackson-databind</artifactId>
  51. </dependency>
  52. <!-- JUnit -->
  53. <dependency>
  54. <groupId>junit</groupId>
  55. <artifactId>junit</artifactId>
  56. </dependency>
  57. </dependencies>
  58. <build>
  59. <pluginManagement>
  60. <plugins>
  61. <plugin>
  62. <groupId>org.apache.maven.plugins</groupId>
  63. <artifactId>maven-compiler-plugin</artifactId>
  64. <version>3.1</version>
  65. <configuration>
  66. <source>1.7</source>
  67. <target>1.7</target>
  68. </configuration>
  69. </plugin>
  70. </plugins>
  71. </pluginManagement>
  72. </build>
  73. </project>