pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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>org.cryptomator</groupId>
  13. <artifactId>main</artifactId>
  14. <version>0.1.0</version>
  15. </parent>
  16. <artifactId>crypto-aes</artifactId>
  17. <name>Cryptomator cryptographic module (AES)</name>
  18. <description>Provides stream ciphers and filename pseudonymization functions.</description>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.cryptomator</groupId>
  22. <artifactId>crypto-api</artifactId>
  23. </dependency>
  24. <!-- Commons -->
  25. <dependency>
  26. <groupId>commons-io</groupId>
  27. <artifactId>commons-io</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.apache.commons</groupId>
  31. <artifactId>commons-collections4</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.commons</groupId>
  35. <artifactId>commons-lang3</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>commons-codec</groupId>
  39. <artifactId>commons-codec</artifactId>
  40. </dependency>
  41. <!-- JSON -->
  42. <dependency>
  43. <groupId>com.fasterxml.jackson.core</groupId>
  44. <artifactId>jackson-databind</artifactId>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <pluginManagement>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-compiler-plugin</artifactId>
  53. <version>3.1</version>
  54. <configuration>
  55. <source>1.7</source>
  56. <target>1.7</target>
  57. </configuration>
  58. </plugin>
  59. </plugins>
  60. </pluginManagement>
  61. </build>
  62. </project>