ColorConsole/pom.xml

150 lines
5.1 KiB
XML
Raw Permalink Normal View History

2016-05-03 21:20:11 +02:00
<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">
2016-05-03 21:20:11 +02:00
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.games647</groupId>
<!--This have to be in lowercase because it's used by plugin.yml-->
<artifactId>colorconsole</artifactId>
<packaging>jar</packaging>
<name>ColorConsole</name>
2019-05-02 11:27:55 +02:00
<version>3.0.0</version>
2017-09-23 13:55:42 +02:00
<url>https://dev.bukkit.org/bukkit-plugins/colorconsole/</url>
2016-05-03 21:20:11 +02:00
<description>
Print colorful console messages depending on the logging level
</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2017-09-23 13:55:42 +02:00
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
2016-05-03 21:20:11 +02:00
</properties>
<build>
<defaultGoal>install</defaultGoal>
<!--Just use the project name to replace an old version of the plugin if the user does only copy-paste-->
<finalName>${project.name}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
2017-09-23 13:55:42 +02:00
<minimizeJar>true</minimizeJar>
<filters>
<filter>
<artifact>org.fusesource.jansi:jansi</artifact>
<excludes>
<!--Ignore the drivers -->
<exclude>META-INF/**</exclude>
</excludes>
</filter>
</filters>
<minimizeJar>true</minimizeJar>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>templating-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<id>filter-src</id>
<goals>
<goal>filter-sources</goal>
</goals>
</execution>
</executions>
</plugin>
2016-05-03 21:20:11 +02:00
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<!--Replace variables-->
<filtering>true</filtering>
</resource>
</resources>
</build>
<repositories>
<!--Bukkit-Server-API -->
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
2016-05-07 15:07:33 +02:00
2016-05-13 19:07:35 +02:00
<!--Sponge-API-->
<repository>
<id>sponge-repo</id>
2017-09-23 13:55:42 +02:00
<url>https://repo.spongepowered.org/maven</url>
2016-05-13 19:07:35 +02:00
</repository>
<repository>
<id>bungeecord-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
2016-05-03 21:20:11 +02:00
</repositories>
<dependencies>
<!--Server API-->
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
2021-05-19 17:32:13 +02:00
<version>1.16.5-R0.1-SNAPSHOT</version>
2016-05-03 21:20:11 +02:00
<scope>provided</scope>
</dependency>
2016-05-04 18:21:13 +02:00
2016-05-07 15:07:33 +02:00
<!--Normally should you move this to a extra module, but this project is currently so small-->
<dependency>
2017-07-01 19:24:53 +02:00
<groupId>net.md-5</groupId>
<artifactId>bungeecord-api</artifactId>
<version>1.16-R0.3</version>
2016-05-07 15:07:33 +02:00
<scope>provided</scope>
</dependency>
2016-05-13 19:07:35 +02:00
<dependency>
<groupId>org.spongepowered</groupId>
<artifactId>spongeapi</artifactId>
<version>7.4.0</version>
2016-05-13 19:07:35 +02:00
<scope>provided</scope>
</dependency>
2016-05-04 18:21:13 +02:00
<dependency>
<groupId>org.fusesource.jansi</groupId>
<artifactId>jansi</artifactId>
<version>2.4.0</version>
2021-05-19 17:32:13 +02:00
<!-- Shade this library for ANSI codes -->
2016-05-04 18:21:13 +02:00
</dependency>
2016-05-03 21:20:11 +02:00
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
2017-05-24 20:03:25 +02:00
<!--Minecraft 1.12 uses 2.1 and earlier versions 2.0-beta9-->
<version>2.1</version>
<!--<version>2.0-beta9</version>-->
2016-05-03 21:20:11 +02:00
<scope>provided</scope>
</dependency>
2021-05-19 17:32:13 +02:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
2016-05-03 21:20:11 +02:00
</dependencies>
</project>