Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6.  
  7. <groupId>pl.chessonline</groupId>
  8. <artifactId>client</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <dependencies>
  11. <!-- Only needed to run tests in a version of IntelliJ IDEA that bundles older versions -->
  12. <dependency>
  13. <groupId>org.junit.platform</groupId>
  14. <artifactId>junit-platform-launcher</artifactId>
  15. <version>1.4.2</version>
  16. <scope>test</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.junit.jupiter</groupId>
  20. <artifactId>junit-jupiter-engine</artifactId>
  21. <version>5.4.2</version>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.junit.vintage</groupId>
  26. <artifactId>junit-vintage-engine</artifactId>
  27. <version>5.4.2</version>
  28. <scope>test</scope>
  29. </dependency>
  30. <!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
  31. <dependency>
  32. <groupId>com.google.guava</groupId>
  33. <artifactId>guava</artifactId>
  34. <version>18.0</version>
  35. </dependency>
  36.  
  37. </dependencies>
  38.  
  39. <properties>
  40. <maven.compiler.source>1.6</maven.compiler.source>
  41. <maven.compiler.target>1.6</maven.compiler.target>
  42. </properties>
  43. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement