pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (c) 2015 Markus Kreusch
  4. This file is licensed under the terms of the MIT license.
  5. See the LICENSE.txt file for more info.
  6. -->
  7. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  8. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  9. <modelVersion>4.0.0</modelVersion>
  10. <parent>
  11. <groupId>org.cryptomator</groupId>
  12. <artifactId>main</artifactId>
  13. <version>1.3.0-SNAPSHOT</version>
  14. </parent>
  15. <artifactId>commons</artifactId>
  16. <name>Cryptomator Commons</name>
  17. <description>Shared utilities</description>
  18. <dependencies>
  19. <!-- Libs -->
  20. <dependency>
  21. <groupId>com.google.guava</groupId>
  22. <artifactId>guava</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.commons</groupId>
  26. <artifactId>commons-lang3</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.google.code.gson</groupId>
  30. <artifactId>gson</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.fxmisc.easybind</groupId>
  34. <artifactId>easybind</artifactId>
  35. </dependency>
  36. <!-- DI -->
  37. <dependency>
  38. <groupId>com.google.dagger</groupId>
  39. <artifactId>dagger</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.google.dagger</groupId>
  43. <artifactId>dagger-compiler</artifactId>
  44. <scope>provided</scope>
  45. </dependency>
  46. <!-- Logging -->
  47. <dependency>
  48. <groupId>org.slf4j</groupId>
  49. <artifactId>slf4j-simple</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. </dependencies>
  53. </project>