Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?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>io.wildernesstp</groupId>
- <artifactId>WildernessTP</artifactId>
- <version>4.4.5-SNAPSHOT</version>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <maven.compiler.source>11</maven.compiler.source>
- <maven.compiler.target>11</maven.compiler.target>
- </properties>
- <developers>
- <developer>
- <name>Quintin VanBooven ("Qball")</name>
- </developer>
- </developers>
- <contributors>
- <contributor>
- <name>Ronald Bunk ("Azoraqua")</name>
- <email>[email protected]</email>
- <url>https://azoraqua.com</url>
- </contributor>
- </contributors>
- <build>
- <defaultGoal>clean package</defaultGoal>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- <resource>
- <directory>.</directory>
- <includes>
- <include>LICENSE.md</include>
- <include>README.md</include>
- </includes>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.8.1</version>
- <configuration>
- <encoding>${project.build.sourceEncoding}</encoding>
- <source>${maven.compiler.source}</source>
- <target>${maven.compiler.target}</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- <version>3.4.1</version>
- <configuration>
- <dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml
- </dependencyReducedPomLocation>
- <finalName>WildernessTp</finalName>
- <minimizeJar>true</minimizeJar>
- <relocations>
- <relocation>
- <pattern>io.papermc.lib</pattern>
- <shadedPattern>io.wildernesstp.paperlib</shadedPattern>
- </relocation>
- </relocations>
- <filters>
- <filter>
- <artifact>*:*</artifact>
- <excludes>
- <exclude>META-INF/*.SF</exclude>
- <exclude>META-INF/*.DSA</exclude>
- <exclude>META-INF/*.RSA</exclude>
- </excludes>
- </filter>
- </filters>
- </configuration>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <repositories>
- <repository>
- <id>glaremasters repo</id>
- <url>https://repo.glaremasters.me/repository/towny/</url>
- </repository>
- <repository>
- <id>papermc-repo</id>
- <url>https://papermc.io/repo/repository/maven-public/</url>
- </repository>
- <repository>
- <id>spigotmc-repo</id>
- <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
- </repository>
- <repository>
- <id>jitpack.io</id>
- <url>https://jitpack.io</url>
- </repository>
- <repository>
- <id>codemc-repo</id>
- <url>https://repo.codemc.org/repository/maven-public/</url>
- </repository>
- </repositories>
- <dependencies>
- <dependency>
- <groupId>org.spigotmc</groupId>
- <artifactId>spigot-api</artifactId>
- <version>1.19.4-R0.1-SNAPSHOT</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- </exclusion>
- <exclusion>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.yaml</groupId>
- <artifactId>snakeyaml</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>io.papermc</groupId>
- <artifactId>paperlib</artifactId>
- <version>1.0.2</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.github.MilkBowl</groupId>
- <artifactId>VaultAPI</artifactId>
- <version>1.7</version>
- <scope>provided</scope>
- </dependency>
- <!-- Dependencies for hooks. -->
- <dependency>
- <groupId>com.bekvon.bukkit</groupId>
- <artifactId>Residence</artifactId>
- <version>4.6.1.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.github.angeschossen</groupId>
- <artifactId>LandsAPI</artifactId>
- <version>5.2.5</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.massivecraft</groupId>
- <artifactId>FactionsUUID</artifactId>
- <version>1.6.9.5-U0.1.21</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.massivecraft.factions</groupId>
- <artifactId>Factions</artifactId>
- <version>2.13.2-SNAPSHOT</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.massivecraft.massivecore</groupId>
- <artifactId>MassiveCore</artifactId>
- <version>2.13.2-SNAPSHOT</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>us.forseth11</groupId>
- <artifactId>Feudal</artifactId>
- <version>1.7.3</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.songoda.kingdoms</groupId>
- <artifactId>FabledKingdoms</artifactId>
- <version>1.2.6</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.palmergames.bukkit.towny</groupId>
- <artifactId>towny</artifactId>
- <version>0.100.3.11</version>
- <scope>provided</scope>
- </dependency>
- <!-- <dependency>
- <groupId>com.github.GriefPrevention</groupId>
- <artifactId>GriefPrevention</artifactId>
- <version>16.18.2</version>
- <scope>provided</scope>
- </dependency> -->
- <dependency>
- <groupId>org.codemc.worldguardwrapper</groupId>
- <artifactId>worldguardwrapper</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- </dependency>
- </dependencies>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment