pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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.11.0-SNAPSHOT</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. <properties>
  20. <bouncycastle.version>1.51</bouncycastle.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.cryptomator</groupId>
  25. <artifactId>crypto-api</artifactId>
  26. </dependency>
  27. <!-- Bouncycastle -->
  28. <dependency>
  29. <groupId>org.bouncycastle</groupId>
  30. <artifactId>bcprov-jdk15on</artifactId>
  31. <version>${bouncycastle.version}</version>
  32. </dependency>
  33. <!-- AES-SIV -->
  34. <dependency>
  35. <groupId>org.cryptomator</groupId>
  36. <artifactId>siv-mode</artifactId>
  37. <version>1.0.2</version>
  38. </dependency>
  39. <!-- Commons -->
  40. <dependency>
  41. <groupId>commons-io</groupId>
  42. <artifactId>commons-io</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.commons</groupId>
  46. <artifactId>commons-collections4</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.commons</groupId>
  50. <artifactId>commons-lang3</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>commons-codec</groupId>
  54. <artifactId>commons-codec</artifactId>
  55. </dependency>
  56. <!-- JSON -->
  57. <dependency>
  58. <groupId>com.fasterxml.jackson.core</groupId>
  59. <artifactId>jackson-databind</artifactId>
  60. </dependency>
  61. </dependencies>
  62. </project>