aboutsummaryrefslogtreecommitdiff
path: root/bungeecord/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'bungeecord/pom.xml')
-rw-r--r--bungeecord/pom.xml55
1 files changed, 0 insertions, 55 deletions
diff --git a/bungeecord/pom.xml b/bungeecord/pom.xml
deleted file mode 100644
index a8c2db9..0000000
--- a/bungeecord/pom.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns="http://maven.apache.org/POM/4.0.0"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>spark-parent</artifactId>
- <groupId>me.lucko</groupId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
-
- <artifactId>spark-bungeecord</artifactId>
- <packaging>jar</packaging>
-
- <build>
- <defaultGoal>clean package</defaultGoal>
- <finalName>spark-bungeecord</finalName>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>${compiler.version}</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
- <dependencies>
- <!-- common -->
- <dependency>
- <groupId>me.lucko</groupId>
- <artifactId>spark-common</artifactId>
- <version>${project.version}</version>
- <scope>provided</scope>
- </dependency>
-
- <!-- BungeeCord -->
- <dependency>
- <groupId>net.md-5</groupId>
- <artifactId>bungeecord-api</artifactId>
- <version>1.12-SNAPSHOT</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
-
-</project>