mirror of
https://github.com/anas-elgarhy/JColorfulConsole.git
synced 2024-08-14 23:57:19 +00:00
56 lines
No EOL
1.8 KiB
XML
56 lines
No EOL
1.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.anas.jcolorfulconsole</groupId>
|
|
<artifactId>jcolorfulconsole</artifactId>
|
|
<version>1.0.1-t1</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>JColorfulConsole</name>
|
|
<description>A colorful console for Java</description>
|
|
<url>https://github.com/Anas-Elgarhy/JColorfulConsole</url>
|
|
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>GNU Lesser General Public License v3.0</name>
|
|
<url>https://www.gnu.org/licenses/lgpl-3.0.txt</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<scm>
|
|
<url>https://svn.apache.org/viewvc/maven</url>
|
|
</scm>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>github</id>
|
|
<name>GitHub Anas Elgarhy Apache Maven Packages</name>
|
|
<url>https://maven.pkg.github.com/Anas-Elgarhy/JColorfulConsole</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.2</version>
|
|
<configuration>
|
|
<source>8</source>
|
|
<target>8</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<properties>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
</properties>
|
|
|
|
</project> |