pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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.1.0-SNAPSHOT</version>
  14. </parent>
  15. <artifactId>commons</artifactId>
  16. <name>Cryptomator common</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. <!-- DI -->
  29. <dependency>
  30. <groupId>com.google.dagger</groupId>
  31. <artifactId>dagger</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.google.dagger</groupId>
  35. <artifactId>dagger-compiler</artifactId>
  36. <scope>provided</scope>
  37. </dependency>
  38. <!-- Test -->
  39. <dependency>
  40. <groupId>junit</groupId>
  41. <artifactId>junit</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>de.bechte.junit</groupId>
  46. <artifactId>junit-hierarchicalcontextrunner</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.hamcrest</groupId>
  51. <artifactId>hamcrest-all</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. </dependencies>
  55. <build>
  56. <plugins>
  57. <plugin>
  58. <groupId>org.jacoco</groupId>
  59. <artifactId>jacoco-maven-plugin</artifactId>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. </project>