Advertisement
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>net.test.plugin</groupId>
- <artifactId>foo</artifactId>
- <version>3.1.1</version>
- <packaging>jar</packaging>
- <name>Foo</name>
- <description>Description</description>
- <properties>
- <java.version>16</java.version>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <build>
- <finalName>${project.name}</finalName>
- <defaultGoal>install</defaultGoal>
- <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.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- <version>3.3.0</version>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- <configuration>
- <createDependencyReducedPom>false</createDependencyReducedPom>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- </build>
- <repositories>
- <repository>
- <id>papermc-repo</id>
- <url>https://papermc.io/repo/repository/maven-public/</url>
- </repository>
- <repository>
- <id>sonatype</id>
- <url>https://oss.sonatype.org/content/groups/public/</url>
- </repository>
- <repository>
- <id>aikar</id>
- <url>https://repo.aikar.co/content/groups/aikar/</url>
- </repository>
- <repository>
- <id>minecraft-repo</id>
- <url>https://libraries.minecraft.net/</url>
- </repository>
- <repository>
- <id>jeff-media-public</id>
- <url>https://hub.jeff-media.com/nexus/repository/jeff-media-public/</url>
- </repository>
- <repository>
- <id>jitpack.io</id>
- <url>https://jitpack.io</url>
- </repository>
- <repository>
- <id>codemc-snapshots</id>
- <url>https://repo.codemc.io/repository/maven-snapshots/</url>
- </repository>
- <repository>
- <id>codemc-repo</id>
- <url>https://repo.codemc.org/repository/maven-public/</url>
- <layout>default</layout>
- </repository>
- <repository>
- <id>sk89q-repo</id>
- <url>https://maven.enginehub.org/repo/</url>
- </repository>
- <repository>
- <id>xenondevs</id>
- <url>https://repo.xenondevs.xyz/#/releases/</url>
- </repository>
- </repositories>
- <dependencies>
- <dependency>
- <groupId>com.destroystokyo.paper</groupId>
- <artifactId>paper-api</artifactId>
- <version>1.16.5-R0.1-SNAPSHOT</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.18.24</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.google.inject</groupId>
- <artifactId>guice</artifactId>
- <version>5.1.0</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.mojang</groupId>
- <artifactId>authlib</artifactId>
- <version>1.5.25</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.sk89q.worldguard</groupId>
- <artifactId>worldguard-bukkit</artifactId>
- <version>7.1.0-SNAPSHOT</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.mongodb</groupId>
- <artifactId>mongodb-driver-sync</artifactId>
- <version>4.7.1</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.github.simplix-softworks</groupId>
- <artifactId>SimplixStorage</artifactId>
- <version>3.2.3</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>co.aikar</groupId>
- <artifactId>acf-paper</artifactId>
- <version>0.5.0-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.github.ben-manes.caffeine</groupId>
- <artifactId>caffeine</artifactId>
- <version>3.1.1</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>de.studiocode.invui</groupId>
- <artifactId>InvUI</artifactId>
- <version>0.5-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.github.LoneDev6</groupId>
- <artifactId>api-itemsadder</artifactId>
- <version>3.0.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.github.MilkBowl</groupId>
- <artifactId>VaultAPI</artifactId>
- <version>1.7</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.jeff_media</groupId>
- <artifactId>MorePersistentDataTypes</artifactId>
- <version>1.1.0</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement