pom.xml 984 B

12345678910111213141516171819202122232425262728293031323334353637
  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. <groupId>com.anas.javautils.jpwd</groupId>
  7. <artifactId>jpwd</artifactId>
  8. <version>0.0.5</version>
  9. <repositories>
  10. <repository>
  11. <id>jitpack.io</id>
  12. <url>https://jitpack.io</url>
  13. </repository>
  14. </repositories>
  15. <dependencies>
  16. <dependency>
  17. <groupId>commons-cli</groupId>
  18. <artifactId>commons-cli</artifactId>
  19. <version>1.5.0</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.github.anas-elgarhy</groupId>
  23. <artifactId>JColorfulConsole</artifactId>
  24. <version>1.0.3</version>
  25. </dependency>
  26. </dependencies>
  27. <properties>
  28. <maven.compiler.source>17</maven.compiler.source>
  29. <maven.compiler.target>17</maven.compiler.target>
  30. </properties>
  31. </project>