pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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.2.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>org.mockito</groupId>
  46. <artifactId>mockito-core</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>de.bechte.junit</groupId>
  51. <artifactId>junit-hierarchicalcontextrunner</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.hamcrest</groupId>
  56. <artifactId>hamcrest-all</artifactId>
  57. <scope>test</scope>
  58. </dependency>
  59. </dependencies>
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.jacoco</groupId>
  64. <artifactId>jacoco-maven-plugin</artifactId>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. </project>