Skip to content

Commit 63fea23

Browse files
committed
Port Denizen-BungeeCord bridge to Velocity
1 parent a282af4 commit 63fea23

37 files changed

+876
-840
lines changed

pom.xml

Lines changed: 49 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,46 +3,76 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55

6-
<groupId>com.denizenscript</groupId>
7-
<artifactId>depenizen-bungee</artifactId>
6+
<groupId>com.isnsest</groupId>
7+
<artifactId>denizen-velocity</artifactId>
88
<packaging>jar</packaging>
9-
<version>2.0.0</version>
10-
<name>DepenizenBungee</name>
11-
<url>https://github.com/DenizenScript/DepenizenBungee</url>
9+
<version>1.0</version>
10+
<name>denizen-velocity</name>
11+
<url>https://github.com/isnsest/denizen-velocity</url>
1212

1313
<properties>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15-
<BUILD_NUMBER>Unknown</BUILD_NUMBER>
15+
<BUILD_NUMBER>1.0</BUILD_NUMBER>
1616
</properties>
1717

1818
<repositories>
1919
<repository>
20-
<id>bungeecord-repo</id>
21-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
20+
<id>papermc</id>
21+
<url>https://repo.papermc.io/repository/maven-public/</url>
2222
</repository>
2323
</repositories>
2424

2525
<dependencies>
2626
<dependency>
27-
<groupId>net.md-5</groupId>
28-
<artifactId>bungeecord-proxy</artifactId>
29-
<version>1.19-SNAPSHOT</version>
30-
<scope>system</scope>
31-
<systemPath>${basedir}/lib/BungeeCord.jar</systemPath>
27+
<groupId>com.velocitypowered</groupId>
28+
<artifactId>velocity-api</artifactId>
29+
<version>3.4.0-SNAPSHOT</version>
30+
<scope>provided</scope>
31+
</dependency>
32+
<dependency>
33+
<groupId>io.netty</groupId>
34+
<artifactId>netty-transport</artifactId>
35+
<version>4.1.97.Final</version>
36+
<scope>provided</scope>
37+
</dependency>
38+
<dependency>
39+
<groupId>io.netty</groupId>
40+
<artifactId>netty-buffer</artifactId>
41+
<version>4.1.97.Final</version>
42+
<scope>provided</scope>
43+
</dependency>
44+
<dependency>
45+
<groupId>io.netty</groupId>
46+
<artifactId>netty-handler</artifactId>
47+
<version>4.1.97.Final</version>
48+
<scope>provided</scope>
49+
</dependency>
50+
<dependency>
51+
<groupId>io.netty</groupId>
52+
<artifactId>netty-common</artifactId>
53+
<version>4.1.97.Final</version>
54+
<scope>provided</scope>
55+
</dependency>
56+
<dependency>
57+
<groupId>io.netty</groupId>
58+
<artifactId>netty-resolver</artifactId>
59+
<version>4.1.97.Final</version>
60+
<scope>provided</scope>
3261
</dependency>
3362
</dependencies>
3463

3564
<build>
3665
<defaultGoal>clean package install</defaultGoal>
37-
<finalName>DepenizenBungee</finalName>
66+
<finalName>denizen-velocity</finalName>
3867
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
3968
<resources>
4069
<resource>
4170
<targetPath>.</targetPath>
4271
<filtering>true</filtering>
4372
<directory>${basedir}/src/main/resources/</directory>
4473
<includes>
45-
<include>*.yml</include>
74+
<include>*</include>
75+
<include>**/*</include>
4676
</includes>
4777
</resource>
4878
</resources>
@@ -52,16 +82,16 @@
5282
<artifactId>maven-jar-plugin</artifactId>
5383
<version>3.1.0</version>
5484
<configuration>
55-
<finalName>DepenizenBungee-${project.version}-b${BUILD_NUMBER}</finalName>
85+
<finalName>denizen-velocity-${project.version}</finalName>
5686
</configuration>
5787
</plugin>
5888
<plugin>
5989
<groupId>org.apache.maven.plugins</groupId>
6090
<artifactId>maven-compiler-plugin</artifactId>
61-
<version>3.8.0</version>
91+
<version>3.8.1</version>
6292
<configuration>
63-
<source>1.8</source>
64-
<target>1.8</target>
93+
<source>17</source>
94+
<target>17</target>
6595
</configuration>
6696
</plugin>
6797
</plugins>

0 commit comments

Comments
 (0)