pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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.jcolorfulconsole</groupId>
  7. <artifactId>jcolorfulconsole</artifactId>
  8. <version>1.0.4</version>
  9. <packaging>jar</packaging>
  10. <name>JColorfulConsole</name>
  11. <description>A colorful console for Java</description>
  12. <url>https://github.com/0x61na/JColorfulConsole</url>
  13. <licenses>
  14. <license>
  15. <name>GNU Lesser General Public License v3.0</name>
  16. <url>https://www.gnu.org/licenses/lgpl-3.0.txt</url>
  17. <distribution>repo</distribution>
  18. </license>
  19. </licenses>
  20. <scm>
  21. <url>https://svn.apache.org/viewvc/maven</url>
  22. </scm>
  23. <distributionManagement>
  24. <repository>
  25. <id>github</id>
  26. <name>GitHub Anas Elgarhy Apache Maven Packages</name>
  27. <url>https://maven.pkg.github.com/Anas-Elgarhy/JColorfulConsole</url>
  28. </repository>
  29. </distributionManagement>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.apache.maven.plugins</groupId>
  34. <artifactId>maven-compiler-plugin</artifactId>
  35. <version>3.11.0</version>
  36. <configuration>
  37. <source>8</source>
  38. <target>8</target>
  39. </configuration>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. <properties>
  44. <maven.compiler.source>17</maven.compiler.source>
  45. <maven.compiler.target>17</maven.compiler.target>
  46. </properties>
  47. </project>