-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f6f3169
commit f4f5ae8
Showing
22 changed files
with
546 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,301 @@ | ||
<?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/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.syntaxphoenix.spigot</groupId> | ||
<artifactId>smoothtimber-legacy</artifactId> | ||
<name>SmoothTimber</name> | ||
<version>1.27.0</version> | ||
<build> | ||
<resources> | ||
<resource> | ||
<filtering>true</filtering> | ||
<directory>src/main/resources</directory> | ||
</resource> | ||
</resources> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<version>3.3.0</version> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>shade</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<artifactSet> | ||
<excludes> | ||
<exclude>org.jboss.forge.roaster</exclude> | ||
</excludes> | ||
</artifactSet> | ||
<filters> | ||
<filter> | ||
<artifact>*:*</artifact> | ||
<excludes> | ||
<exclude>META-INF/*.SF</exclude> | ||
<exclude>META-INF/*.DSA</exclude> | ||
<exclude>META-INF/*.RSA</exclude> | ||
</excludes> | ||
</filter> | ||
<filter> | ||
<artifact>*:*</artifact> | ||
<excludes> | ||
<exclude>com/syntaxphoenix/spigot/smoothtimber/annotation/*.class</exclude> | ||
</excludes> | ||
</filter> | ||
</filters> | ||
<relocations> | ||
<relocation> | ||
<pattern>com.syntaxphoenix.syntaxapi</pattern> | ||
<shadedPattern>com.syntaxphoenix.spigot.smoothtimber.shaded.syntaxapi</shadedPattern> | ||
</relocation> | ||
<relocation> | ||
<pattern>net.coreprotect.v1</pattern> | ||
<shadedPattern>net.coreprotect</shadedPattern> | ||
</relocation> | ||
<relocation> | ||
<pattern>net.coreprotect.v2</pattern> | ||
<shadedPattern>net.coreprotect</shadedPattern> | ||
</relocation> | ||
<relocation> | ||
<pattern>mcmmo.v1.com</pattern> | ||
<shadedPattern>com</shadedPattern> | ||
</relocation> | ||
</relocations> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>compile-processors</id> | ||
<phase>generate-sources</phase> | ||
<goals> | ||
<goal>compile</goal> | ||
</goals> | ||
<configuration> | ||
<proc>none</proc> | ||
<includes> | ||
<include>com/syntaxphoenix/spigot/smoothtimber/annotation/MCVersionEnumGenerator.java</include> | ||
</includes> | ||
</configuration> | ||
</execution> | ||
<execution> | ||
<id>compile-annotationSource</id> | ||
<phase>process-sources</phase> | ||
<goals> | ||
<goal>compile</goal> | ||
</goals> | ||
<configuration> | ||
<proc>none</proc> | ||
<includes> | ||
<include>com/syntaxphoenix/spigot/smoothtimber/version/manager/gen/MCversion.java</include> | ||
</includes> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<source>11</source> | ||
<target>11</target> | ||
<compilerArgs> | ||
<arg>-parameters</arg> | ||
</compilerArgs> | ||
<annotationProcessors> | ||
<annotationProcessor>com.syntaxphoenix.spigot.smoothtimber.annotation.MCVersionEnumGenerator</annotationProcessor> | ||
</annotationProcessors> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<repositories> | ||
<repository> | ||
<id>jitpack.io</id> | ||
<url>https://jitpack.io</url> | ||
</repository> | ||
<repository> | ||
<id>papermc</id> | ||
<url>https://repo.papermc.io/repository/maven-public/</url> | ||
</repository> | ||
<repository> | ||
<id>spigot-repo</id> | ||
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> | ||
</repository> | ||
<repository> | ||
<id>sk89q-repo</id> | ||
<url>https://maven.enginehub.org/repo/</url> | ||
</repository> | ||
<repository> | ||
<id>placeholderapi</id> | ||
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url> | ||
</repository> | ||
<repository> | ||
<id>md_5-repo</id> | ||
<url>https://repo.md-5.net/content/repositories/public/</url> | ||
</repository> | ||
<repository> | ||
<id>moss-repo</id> | ||
<url>https://ci.ender.zone/plugin/repository/everything/</url> | ||
</repository> | ||
<repository> | ||
<id>neetgames</id> | ||
<url>https://nexus.neetgames.com/repository/maven-releases/</url> | ||
</repository> | ||
</repositories> | ||
<pluginRepositories> | ||
<pluginRepository> | ||
<id>apache.snapshots</id> | ||
<url>https://repository.apache.org/snapshots/</url> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
<dependencies> | ||
<dependency> | ||
<groupId>me.clip</groupId> | ||
<artifactId>placeholderapi</artifactId> | ||
<version>2.10.9</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.angeschossen</groupId> | ||
<artifactId>LandsAPI</artifactId> | ||
<version>4.10.18</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.TechFortress</groupId> | ||
<artifactId>GriefPrevention</artifactId> | ||
<version>16.16.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.Zrips</groupId> | ||
<artifactId>Jobs</artifactId> | ||
<version>v4.17.2</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.sk89q.worldguard</groupId> | ||
<artifactId>worldguard-core</artifactId> | ||
<version>7.0.0</version> | ||
<scope>provided</scope> | ||
<exclusions> | ||
<exclusion> | ||
<artifactId>snakeyaml</artifactId> | ||
<groupId>org.yaml</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>gson</artifactId> | ||
<groupId>com.google.code.gson</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>bukkit</artifactId> | ||
<groupId>org.bukkit</groupId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>de.diddiz</groupId> | ||
<artifactId>logblock</artifactId> | ||
<version>1.16.1.2-SNAPSHOT</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.gmail.nossr50.mcMMO</groupId> | ||
<artifactId>mcMMO</artifactId> | ||
<version>2.2.004</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.TownyAdvanced</groupId> | ||
<artifactId>Towny</artifactId> | ||
<version>0.96.7.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.massivecraft</groupId> | ||
<artifactId>Factions</artifactId> | ||
<version>1.6.9.5-U0.6.28</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.spigotmc</groupId> | ||
<artifactId>spigot-api</artifactId> | ||
<version>1.20.1-R0.1-SNAPSHOT</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>dev.folia</groupId> | ||
<artifactId>folia-api</artifactId> | ||
<version>1.20.1-R0.1-SNAPSHOT</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jboss.forge.roaster</groupId> | ||
<artifactId>roaster-api</artifactId> | ||
<version>2.28.0.Final</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jboss.forge.roaster</groupId> | ||
<artifactId>roaster-jdt</artifactId> | ||
<version>2.28.0.Final</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>net.coreprotect</groupId> | ||
<artifactId>CoreProtect6</artifactId> | ||
<version>1</version> | ||
<scope>system</scope> | ||
<systemPath>${project.basedir}/libraries/CoreProtect-19.4.repackaged.jar</systemPath> | ||
</dependency> | ||
<dependency> | ||
<groupId>net.coreprotect</groupId> | ||
<artifactId>CoreProtect5</artifactId> | ||
<version>1</version> | ||
<scope>system</scope> | ||
<systemPath>${project.basedir}/libraries/CoreProtect-2.14.4.repackaged.jar</systemPath> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.bekvon</groupId> | ||
<artifactId>residence</artifactId> | ||
<version>1</version> | ||
<scope>system</scope> | ||
<systemPath>${project.basedir}/libraries/Residence4.9.1.9.jar</systemPath> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.syntaxphoenix</groupId> | ||
<artifactId>blockylog1</artifactId> | ||
<version>1</version> | ||
<scope>system</scope> | ||
<systemPath>${project.basedir}/libraries/BlockyLog-1.0.jar</systemPath> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.syntaxphoenix</groupId> | ||
<artifactId>blockylog2</artifactId> | ||
<version>1</version> | ||
<scope>system</scope> | ||
<systemPath>${project.basedir}/libraries/BlockyLog-2.3.0.jar</systemPath> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.sk89q.worldguard</groupId> | ||
<artifactId>worldguard-bukkit2</artifactId> | ||
<version>1</version> | ||
<scope>system</scope> | ||
<systemPath>${project.basedir}/libraries/worldguard-bukkit-6.2.2.jar</systemPath> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.gmail.nossr50.mcMMO</groupId> | ||
<artifactId>mcMMO-jar</artifactId> | ||
<version>2.1.175-SNAPSHOT</version> | ||
<scope>system</scope> | ||
<systemPath>${project.basedir}/libraries/mcMMO.repackaged.jar</systemPath> | ||
</dependency> | ||
</dependencies> | ||
<properties> | ||
<java.package.id>smoothtimber</java.package.id> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<server.version>1.20.1-R0.1-SNAPSHOT</server.version> | ||
<project.roaster.version>2.28.0.Final</project.roaster.version> | ||
</properties> | ||
</project> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.