pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>de.jplag</groupId>
  6. <artifactId>aggregator</artifactId>
  7. <version>${revision}</version>
  8. </parent>
  9. <artifactId>endtoend-testing</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>de.jplag</groupId>
  13. <artifactId>jplag</artifactId>
  14. <version>${revision}</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>de.jplag</groupId>
  18. <artifactId>cli</artifactId>
  19. <version>${revision}</version>
  20. <scope>test</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>de.jplag</groupId>
  24. <artifactId>language-testutils</artifactId>
  25. <version>${revision}</version>
  26. <type>test-jar</type>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.fasterxml.jackson.core</groupId>
  31. <artifactId>jackson-databind</artifactId>
  32. </dependency>
  33. </dependencies>
  34. </project>