Waterfall/Waterfall-Proxy-Patches/0001-FlameCord-POM-Changes.patch

147 lines
4.9 KiB
Diff
Raw Normal View History

From 78f08ffc6b5a3860c958d66ac3c469c39aff35ff Mon Sep 17 00:00:00 2001
2020-12-16 11:14:44 +01:00
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..20edd900
2020-12-16 11:14:44 +01:00
--- /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>
2021-12-30 03:02:28 +01:00
+ <artifactId>waterfall-parent</artifactId>
+ <version>1.19-R0.1-SNAPSHOT</version>
2020-12-16 11:14:44 +01:00
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+
+ <groupId>dev._2lstudios</groupId>
2021-12-30 03:02:28 +01:00
+ <artifactId>waterfall-flamecord</artifactId>
+ <version>1.19-R0.1-SNAPSHOT</version>
2020-12-16 11:14:44 +01:00
+ <packaging>jar</packaging>
+
2021-12-30 03:02:28 +01:00
+ <name>Waterfall-FlameCord</name>
2020-12-16 11:14:44 +01:00
+ <description>FlameCord adds security essentials and new configuration options</description>
+
+ <dependencies>
+ <dependency>
+ <groupId>io.github.waterfallmc</groupId>
2021-12-30 03:02:28 +01:00
+ <artifactId>waterfall-config</artifactId>
2020-12-16 11:14:44 +01:00
+ <version>${project.version}</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>io.github.waterfallmc</groupId>
2021-12-30 03:02:28 +01:00
+ <artifactId>waterfall-chat</artifactId>
2020-12-16 11:14:44 +01:00
+ <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 2b544c23..d940b21c 100644
2020-12-16 11:14:44 +01:00
--- a/pom.xml
+++ b/pom.xml
2021-12-30 03:02:28 +01:00
@@ -63,6 +63,7 @@
2020-12-16 11:14:44 +01:00
<module>query</module>
2021-05-18 22:04:15 +02:00
<!--<module>slf4j</module>-->
2020-12-16 11:14:44 +01:00
<module>native</module>
2021-12-30 03:02:28 +01:00
+ <module>flamecord</module> <!-- FlameCord - POM Changes -->
2020-12-16 11:14:44 +01:00
</modules>
<scm>
diff --git a/protocol/pom.xml b/protocol/pom.xml
index 93ae5952..d6222d16 100644
2020-12-16 11:14:44 +01:00
--- a/protocol/pom.xml
+++ b/protocol/pom.xml
2021-12-30 03:02:28 +01:00
@@ -64,5 +64,14 @@
2020-12-16 11:14:44 +01:00
<version>1.3.0</version>
<scope>compile</scope>
</dependency>
+
+ <!-- FlameCord start - Add our dependencies -->
+ <dependency>
+ <groupId>dev._2lstudios</groupId>
2021-12-30 03:02:28 +01:00
+ <artifactId>waterfall-flamecord</artifactId>
2020-12-16 11:14:44 +01:00
+ <version>${project.version}</version>
+ <scope>compile</scope>
+ </dependency>
+ <!-- FlameCord end -->
</dependencies>
</project>
diff --git a/proxy/pom.xml b/proxy/pom.xml
index 72b7f3a9..47fd853e 100644
2020-12-16 11:14:44 +01:00
--- a/proxy/pom.xml
+++ b/proxy/pom.xml
2021-05-19 23:56:07 +02:00
@@ -150,6 +150,51 @@
2020-12-16 11:14:44 +01:00
<scope>runtime</scope>
</dependency>
<!-- Waterfall end -->
+
+ <!-- FlameCord start - Add our dependencies -->
+ <dependency>
+ <groupId>dev._2lstudios</groupId>
2021-12-30 03:02:28 +01:00
+ <artifactId>waterfall-flamecord</artifactId>
2020-12-16 11:14:44 +01:00
+ <version>${project.version}</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>io.github.waterfallmc</groupId>
2021-12-30 03:02:28 +01:00
+ <artifactId>waterfall-module-cmd-alert</artifactId>
2020-12-16 11:14:44 +01:00
+ <version>${project.version}</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>io.github.waterfallmc</groupId>
2021-12-30 03:02:28 +01:00
+ <artifactId>waterfall-module-cmd-find</artifactId>
2020-12-16 11:14:44 +01:00
+ <version>${project.version}</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>io.github.waterfallmc</groupId>
2021-12-30 03:02:28 +01:00
+ <artifactId>waterfall-module-cmd-list</artifactId>
2020-12-16 11:14:44 +01:00
+ <version>${project.version}</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>io.github.waterfallmc</groupId>
2021-12-30 03:02:28 +01:00
+ <artifactId>waterfall-module-cmd-send</artifactId>
2020-12-16 11:14:44 +01:00
+ <version>${project.version}</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>io.github.waterfallmc</groupId>
2021-12-30 03:02:28 +01:00
+ <artifactId>waterfall-module-cmd-server</artifactId>
2020-12-16 11:14:44 +01:00
+ <version>${project.version}</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
2021-11-30 15:50:10 +01:00
+ <groupId>net.md-5</groupId>
2021-11-30 16:04:33 +01:00
+ <artifactId>bungeecord-module-reconnect-yaml</artifactId>
2020-12-16 11:14:44 +01:00
+ <version>${project.version}</version>
+ <scope>compile</scope>
+ </dependency>
+ <!-- FlameCord end -->
</dependencies>
<!-- Waterfall start - copy license files into jar -->
2020-12-16 11:14:44 +01:00
--
2.36.1.windows.1
2020-12-16 11:14:44 +01:00