2021-06-09 00:27:45 +02:00
|
|
|
From 390c73f1736afb9ea786fcfa142b671f087aeb1f 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
|
2021-06-09 00:27:45 +02:00
|
|
|
index 00000000..5f618ddf
|
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>
|
2021-02-24 07:43:19 +01:00
|
|
|
+ <version>1.16-R0.5-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>
|
2021-02-24 07:43:19 +01:00
|
|
|
+ <version>1.16-R0.5-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
|
2021-06-09 00:27:45 +02:00
|
|
|
index b1052b2b..c46258f2 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
|
2021-06-09 00:27:45 +02:00
|
|
|
index 044be0c3..6fa1ade1 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
|
2021-06-09 00:27:45 +02:00
|
|
|
index d3750214..05255a29 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>
|
|
|
|
--
|
2021-06-09 00:27:45 +02:00
|
|
|
2.31.1.windows.1
|
2020-12-16 11:14:44 +01:00
|
|
|
|