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>me.elb1to.practice</groupId>
- <artifactId>Frost-SkillWars</artifactId>
- <version>1.0</version>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <repositories>
- <repository>
- <id>sk89q-repo</id>
- <url>http://maven.sk89q.com/repo/</url>
- </repository>
- <repository>
- <id>fawe-repo</id>
- <url>http://ci.athion.net/job/FastAsyncWorldEdit/ws/mvn/</url>
- </repository>
- <repository>
- <id>placeholderapi</id>
- <url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
- </repository>
- </repositories>
- <dependencies>
- <!-- PaperSpigot -->
- <dependency>
- <groupId>org.papermc</groupId>
- <artifactId>PaperSpigot</artifactId>
- <version>1.8.8-R0.1-SNAPSHOT</version>
- <systemPath>${project.basedir}/libs/PaperSpigot-1.8.8-R0.1-SNAPSHOT.jar</systemPath>
- <scope>system</scope>
- </dependency>
- <!-- KnockbackController -->
- <dependency>
- <groupId>me.elb1to.practice.controller</groupId>
- <artifactId>KnockbackController</artifactId>
- <version>1.0</version>
- <systemPath>${project.basedir}/libs/KnockbackController.jar</systemPath>
- <scope>compile</scope>
- </dependency>
- <!-- FrozedTablist -->
- <dependency>
- <groupId>club.frozed.tablist</groupId>
- <artifactId>FrozedTablist</artifactId>
- <version>1.0</version>
- <systemPath>${project.basedir}/libs/FrozedTablist.jar</systemPath>
- <scope>system</scope>
- </dependency>
- <!-- WorldEdit -->
- <dependency>
- <groupId>com.sk89q</groupId>
- <artifactId>worldedit</artifactId>
- <version>6.0.0-SNAPSHOT</version>
- <scope>provided</scope>
- </dependency>
- <!-- FastAsyncWorldEdit -->
- <dependency>
- <groupId>com.boydti</groupId>
- <artifactId>fawe-api</artifactId>
- <version>latest</version>
- <scope>provided</scope>
- </dependency>
- <!-- PlaceholderAPI -->
- <dependency>
- <groupId>me.clip</groupId>
- <artifactId>placeholderapi</artifactId>
- <version>2.10.9</version>
- <scope>provided</scope>
- </dependency>
- <!-- Google Gson -->
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- <version>2.8.6</version>
- <scope>compile</scope>
- </dependency>
- <!-- MongoDB Java Driver -->
- <dependency>
- <groupId>org.mongodb</groupId>
- <artifactId>mongo-java-driver</artifactId>
- <version>3.10.2</version>
- <scope>compile</scope>
- </dependency>
- <!-- Lombok -->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.18.12</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- <version>3.2.4</version>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement