pom.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>Odds</groupId>
  4. <artifactId>Odds</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <build>
  7. <sourceDirectory>src</sourceDirectory>
  8. <plugins>
  9. <plugin>
  10. <artifactId>maven-compiler-plugin</artifactId>
  11. <version>3.8.1</version>
  12. <configuration>
  13. <source>1.8</source>
  14. <target>1.8</target>
  15. </configuration>
  16. </plugin>
  17. </plugins>
  18. </build>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.google.guava</groupId>
  22. <artifactId>guava</artifactId>
  23. <version>30.0-jre</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>net.sourceforge.htmlunit</groupId>
  27. <artifactId>htmlunit</artifactId>
  28. <version>2.50.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.github.jbytecode</groupId>
  32. <artifactId>RCaller</artifactId>
  33. <version>3.0</version>
  34. </dependency>
  35. </dependencies>
  36. </project>