1
0
mirror of https://github.com/openeggbert/sprite-utils.git synced 2025-03-14 23:33:28 +01:00
sprite-utils/pom.xml

223 lines
8.2 KiB
XML
Raw Permalink Normal View History

2024-07-27 23:57:14 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<!--
sprite-utils: Tool used to work with sprites
Copyright (C) 2024-2024 the original author or authors.
2024-10-13 09:08:26 +02:00
This program is free software; you can redistribute it and/or
2024-07-27 23:57:14 +02:00
modify it under the terms of the GNU General Public License
2024-07-29 21:16:33 +02:00
as published by the Free Software Foundation, either version 3
of the License, or (at your option) any later version.
2024-07-27 23:57:14 +02:00
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
2024-07-29 21:16:33 +02:00
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2024-07-27 23:57:14 +02:00
GNU General Public License for more details.
2024-07-29 21:16:33 +02:00
2024-07-27 23:57:14 +02:00
You should have received a copy of the GNU General Public License
2024-07-29 21:16:33 +02:00
along with this program. If not, see
<https://www.gnu.org/licenses/> or write to the Free Software
2024-07-27 23:57:14 +02:00
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-->
<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>
<parent>
2024-10-13 10:49:00 +02:00
<groupId>com.robertvokac.essential</groupId>
<artifactId>robertvokac-parent</artifactId>
2024-07-27 23:57:14 +02:00
<version>0.1.1-SNAPSHOT</version>
</parent>
2024-10-13 09:08:26 +02:00
<groupId>com.openeggbert.utils</groupId>
2024-07-27 23:57:14 +02:00
<artifactId>sprite-utils</artifactId>
<version>0.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Sprite Utils</name>
<description>Tools used to work with sprites</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<checkstyle.skip>true</checkstyle.skip><!-- TODO: make false-->
<power.version>2.0.1-SNAPSHOT</power.version>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven-deploy-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<!--<compilerArgs>
-|-enable-preview
</compilerArgs>-->
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
<source>${javase.version}</source>
<target>${javase.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>${maven-assembly-plugin.version}</version>
<configuration>
<archive>
<manifest>
2024-10-13 09:08:26 +02:00
<mainClass>com.openeggbert.utils.spriteutils.core.Main</mainClass>
2024-07-27 23:57:14 +02:00
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- bind to the packaging phase -->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<skip>${checkstyle.skip}</skip>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
2024-07-27 23:57:14 +02:00
<!-- Other dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
</dependency>
<!-- Lombok-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.jclarion</groupId>
<artifactId>image4j</artifactId>
<version>0.7</version>
</dependency>
</dependencies>
<repositories>
<repository>
2024-10-13 10:49:00 +02:00
<id>openeggbert-releases-repository</id>
2024-10-13 09:08:26 +02:00
<name>openeggbert-releases-repository</name>
<url>https://repo.openeggbert.com/releases</url>
2024-07-27 23:57:14 +02:00
</repository>
<repository>
2024-10-13 10:49:00 +02:00
<id>openeggbert-snapshots-repository</id>
2024-10-13 09:08:26 +02:00
<name>openeggbert-snapshots-repository</name>
<url>https://repo.openeggbert.com/snapshots</url>
2024-07-27 23:57:14 +02:00
</repository>
2024-10-13 10:49:00 +02:00
<repository>
<id>robertvokac-releases-repository</id>
<name>robertvokac-releases-repository</name>
<url>https://maven.robertvokac.com/releases</url>
</repository>
<repository>
<id>robertvokac-snapshots-repository</id>
<name>robertvokac-snapshots-repository</name>
<url>https://maven.robertvokac.com/snapshots</url>
</repository>
2024-07-27 23:57:14 +02:00
</repositories>
<pluginRepositories>
<pluginRepository>
2024-10-13 10:49:00 +02:00
<id>openeggbert-releases-repository</id>
2024-10-13 09:08:26 +02:00
<name>openeggbert-releases-repository</name>
<url>https://repo.openeggbert.com/releases</url>
2024-07-27 23:57:14 +02:00
</pluginRepository>
<pluginRepository>
2024-10-13 10:49:00 +02:00
<id>openeggbert-snapshots-repository</id>
2024-10-13 09:08:26 +02:00
<name>openeggbert-snapshots-repository</name>
<url>https://repo.openeggbert.com/snapshots</url>
2024-07-27 23:57:14 +02:00
</pluginRepository>
2024-10-13 10:49:00 +02:00
<pluginRepository>
<id>robertvokac-releases-repository</id>
<name>robertvokac-releases-repository</name>
<url>https://maven.robertvokac.com/releases</url>
</pluginRepository>
<pluginRepository>
<id>robertvokac-snapshots-repository</id>
<name>robertvokac-snapshots-repository</name>
<url>https://maven.robertvokac.com/snapshots</url>
</pluginRepository>
2024-07-27 23:57:14 +02:00
</pluginRepositories>
</project>