171 lines
6.4 KiB
XML
171 lines
6.4 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>Vmessage</groupId>
|
||
|
<artifactId>Vmessage</artifactId>
|
||
|
<version>1.0</version>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>Vmessage</name>
|
||
|
|
||
|
<description>A velocity plugin that creates a multiserver chat for the networth</description>
|
||
|
<properties>
|
||
|
<java.version>11</java.version>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>release</id>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-source-plugin</artifactId>
|
||
|
<version>3.2.0</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>attach-sources</id>
|
||
|
<goals>
|
||
|
<goal>jar-no-fork</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||
|
<version>3.2.0</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>attach-javadocs</id>
|
||
|
<goals>
|
||
|
<goal>jar</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||
|
<version>1.6</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>sign-artifacts</id>
|
||
|
<phase>verify</phase>
|
||
|
<goals>
|
||
|
<goal>sign</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>src/main/resources</directory>
|
||
|
<filtering>true</filtering>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
</build>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
|
||
|
<build>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>${project.basedir}/src/main/resources</directory>
|
||
|
<filtering>true</filtering>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.8.1</version>
|
||
|
<configuration>
|
||
|
<source>${java.version}</source>
|
||
|
<target>${java.version}</target>
|
||
|
</configuration>
|
||
|
</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>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-site-plugin</artifactId>
|
||
|
<version>3.9.1</version>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>net.trajano.wagon</groupId>
|
||
|
<artifactId>wagon-git</artifactId>
|
||
|
<version>2.0.4</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.maven.doxia</groupId>
|
||
|
<artifactId>doxia-module-markdown</artifactId>
|
||
|
<version>1.9.1</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-release-plugin</artifactId>
|
||
|
<version>3.0.0-M1</version>
|
||
|
<configuration>
|
||
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
||
|
<tagNameFormat>@{project.version}</tagNameFormat>
|
||
|
<scmCommentPrefix xml:space="preserve">[RELEASE] </scmCommentPrefix>
|
||
|
<goals>install deploy site-deploy
|
||
|
</goals> <!-- install is here to fix javadoc generation in multi-module projects -->
|
||
|
<releaseProfiles>release</releaseProfiles>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<reporting>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||
|
<version>3.2.0</version>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</reporting>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>papermc-repo</id>
|
||
|
<url>https://repo.papermc.io/repository/maven-public/</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.velocitypowered</groupId>
|
||
|
<artifactId>velocity-api</artifactId>
|
||
|
<version>3.1.1</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>net.luckperms</groupId>
|
||
|
<artifactId>api</artifactId>
|
||
|
<version>5.4</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|