mirror of
https://github.com/PaperMC/Waterfall.git
synced 2024-11-06 10:45:37 +01:00
149 lines
4.9 KiB
Diff
149 lines
4.9 KiB
Diff
From b3bb0138f7cd3923259af7c6d484ce0c3d783bf8 Mon Sep 17 00:00:00 2001
|
|
From: foss-mc <69294560+foss-mc@users.noreply.github.com>
|
|
Date: Wed, 16 Dec 2020 17:59:15 +0800
|
|
Subject: [PATCH] FlameCord POM Changes
|
|
|
|
|
|
diff --git a/flamecord/pom.xml b/flamecord/pom.xml
|
|
new file mode 100644
|
|
index 00000000..fc24d714
|
|
--- /dev/null
|
|
+++ b/flamecord/pom.xml
|
|
@@ -0,0 +1,44 @@
|
|
+<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>
|
|
+
|
|
+ <parent>
|
|
+ <groupId>io.github.waterfallmc</groupId>
|
|
+ <artifactId>flamecord-parent</artifactId>
|
|
+ <version>1.18-R0.1-SNAPSHOT</version>
|
|
+ <relativePath>../pom.xml</relativePath>
|
|
+ </parent>
|
|
+
|
|
+ <groupId>dev._2lstudios</groupId>
|
|
+ <artifactId>flamecord-flamecord</artifactId>
|
|
+ <version>1.18-R0.1-SNAPSHOT</version>
|
|
+ <packaging>jar</packaging>
|
|
+
|
|
+ <name>FlameCord-FlameCord</name>
|
|
+ <description>FlameCord adds security essentials and new configuration options</description>
|
|
+
|
|
+ <dependencies>
|
|
+ <dependency>
|
|
+ <groupId>io.github.waterfallmc</groupId>
|
|
+ <artifactId>flamecord-config</artifactId>
|
|
+ <version>${project.version}</version>
|
|
+ <scope>compile</scope>
|
|
+ </dependency>
|
|
+ <dependency>
|
|
+ <groupId>io.github.waterfallmc</groupId>
|
|
+ <artifactId>flamecord-chat</artifactId>
|
|
+ <version>${project.version}</version>
|
|
+ <scope>compile</scope>
|
|
+ </dependency>
|
|
+ </dependencies>
|
|
+
|
|
+ <build>
|
|
+ <finalName>${project.name}</finalName>
|
|
+ <resources>
|
|
+ <resource>
|
|
+ <filtering>true</filtering>
|
|
+ <directory>${basedir}/src/main/resources</directory>
|
|
+ </resource>
|
|
+ </resources>
|
|
+ </build>
|
|
+</project>
|
|
diff --git a/pom.xml b/pom.xml
|
|
index db494b4c..0c856cc2 100644
|
|
--- a/pom.xml
|
|
+++ b/pom.xml
|
|
@@ -66,6 +66,9 @@
|
|
<module>query</module>
|
|
<!--<module>slf4j</module>-->
|
|
<module>native</module>
|
|
+ <!-- FlameCord start - Add modules -->
|
|
+ <module>flamecord</module>
|
|
+ <!-- FlameCord end -->
|
|
</modules>
|
|
|
|
<scm>
|
|
diff --git a/protocol/pom.xml b/protocol/pom.xml
|
|
index 27e4096d..cfaa38c2 100644
|
|
--- a/protocol/pom.xml
|
|
+++ b/protocol/pom.xml
|
|
@@ -49,5 +49,14 @@
|
|
<version>1.3.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
+
|
|
+ <!-- FlameCord start - Add our dependencies -->
|
|
+ <dependency>
|
|
+ <groupId>dev._2lstudios</groupId>
|
|
+ <artifactId>flamecord-flamecord</artifactId>
|
|
+ <version>${project.version}</version>
|
|
+ <scope>compile</scope>
|
|
+ </dependency>
|
|
+ <!-- FlameCord end -->
|
|
</dependencies>
|
|
</project>
|
|
diff --git a/proxy/pom.xml b/proxy/pom.xml
|
|
index 171171c2..77fda7a9 100644
|
|
--- a/proxy/pom.xml
|
|
+++ b/proxy/pom.xml
|
|
@@ -150,6 +150,51 @@
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<!-- Waterfall end -->
|
|
+
|
|
+ <!-- FlameCord start - Add our dependencies -->
|
|
+ <dependency>
|
|
+ <groupId>dev._2lstudios</groupId>
|
|
+ <artifactId>flamecord-flamecord</artifactId>
|
|
+ <version>${project.version}</version>
|
|
+ <scope>compile</scope>
|
|
+ </dependency>
|
|
+ <dependency>
|
|
+ <groupId>io.github.waterfallmc</groupId>
|
|
+ <artifactId>flamecord-module-cmd-alert</artifactId>
|
|
+ <version>${project.version}</version>
|
|
+ <scope>compile</scope>
|
|
+ </dependency>
|
|
+ <dependency>
|
|
+ <groupId>io.github.waterfallmc</groupId>
|
|
+ <artifactId>flamecord-module-cmd-find</artifactId>
|
|
+ <version>${project.version}</version>
|
|
+ <scope>compile</scope>
|
|
+ </dependency>
|
|
+ <dependency>
|
|
+ <groupId>io.github.waterfallmc</groupId>
|
|
+ <artifactId>flamecord-module-cmd-list</artifactId>
|
|
+ <version>${project.version}</version>
|
|
+ <scope>compile</scope>
|
|
+ </dependency>
|
|
+ <dependency>
|
|
+ <groupId>io.github.waterfallmc</groupId>
|
|
+ <artifactId>flamecord-module-cmd-send</artifactId>
|
|
+ <version>${project.version}</version>
|
|
+ <scope>compile</scope>
|
|
+ </dependency>
|
|
+ <dependency>
|
|
+ <groupId>io.github.waterfallmc</groupId>
|
|
+ <artifactId>flamecord-module-cmd-server</artifactId>
|
|
+ <version>${project.version}</version>
|
|
+ <scope>compile</scope>
|
|
+ </dependency>
|
|
+ <dependency>
|
|
+ <groupId>net.md-5</groupId>
|
|
+ <artifactId>bungeecord-module-reconnect-yaml</artifactId>
|
|
+ <version>${project.version}</version>
|
|
+ <scope>compile</scope>
|
|
+ </dependency>
|
|
+ <!-- FlameCord end -->
|
|
</dependencies>
|
|
|
|
<build>
|
|
--
|
|
2.32.0.windows.1
|
|
|