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

149 lines
4.9 KiB
Diff
Raw Normal View History

From 60a16fffd914c3eb6cca576b85fe34d02c135768 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..ed4c392c
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-06-09 00:21:53 +02:00
+ <artifactId>flamecord-parent</artifactId>
+ <version>1.17-R0.1-SNAPSHOT</version>
2020-12-16 11:14:44 +01:00
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+
+ <groupId>dev._2lstudios</groupId>
2021-06-09 00:21:53 +02:00
+ <artifactId>flamecord-flamecord</artifactId>
+ <version>1.17-R0.1-SNAPSHOT</version>
2020-12-16 11:14:44 +01:00
+ <packaging>jar</packaging>
+
2021-06-09 00:21:53 +02:00
+ <name>FlameCord-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-06-09 00:21:53 +02:00
+ <artifactId>flamecord-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-06-09 00:21:53 +02:00
+ <artifactId>flamecord-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 26e85fb8..b305e245 100644
2020-12-16 11:14:44 +01:00
--- a/pom.xml
+++ b/pom.xml
2021-05-18 22:04:15 +02:00
@@ -63,6 +63,9 @@
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>
+ <!-- FlameCord start - Add modules -->
+ <module>flamecord</module>
+ <!-- FlameCord end -->
</modules>
<scm>
diff --git a/protocol/pom.xml b/protocol/pom.xml
index 433fbfe0..22319300 100644
2020-12-16 11:14:44 +01:00
--- a/protocol/pom.xml
+++ b/protocol/pom.xml
@@ -64,5 +64,14 @@
<version>1.3.0</version>
<scope>compile</scope>
</dependency>
+
+ <!-- FlameCord start - Add our dependencies -->
+ <dependency>
+ <groupId>dev._2lstudios</groupId>
2021-06-09 00:21:53 +02:00
+ <artifactId>flamecord-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 7bfe7d6b..d9a375e7 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-06-09 00:21:53 +02:00
+ <artifactId>flamecord-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-06-09 00:21:53 +02:00
+ <artifactId>flamecord-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-06-09 00:21:53 +02:00
+ <artifactId>flamecord-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-06-09 00:21:53 +02:00
+ <artifactId>flamecord-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-06-09 00:21:53 +02:00
+ <artifactId>flamecord-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-06-09 00:21:53 +02:00
+ <artifactId>flamecord-module-cmd-server</artifactId>
2020-12-16 11:14:44 +01:00
+ <version>${project.version}</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>io.github.waterfallmc</groupId>
2021-06-09 00:21:53 +02:00
+ <artifactId>flamecord-module-reconnect-yaml</artifactId>
2020-12-16 11:14:44 +01:00
+ <version>${project.version}</version>
+ <scope>compile</scope>
+ </dependency>
+ <!-- FlameCord end -->
</dependencies>
<build>
--
2.32.0.windows.1
2020-12-16 11:14:44 +01:00