|
3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 |
|
6 | | - <groupId>com.denizenscript</groupId> |
7 | | - <artifactId>depenizen-bungee</artifactId> |
| 6 | + <groupId>com.isnsest</groupId> |
| 7 | + <artifactId>denizen-velocity</artifactId> |
8 | 8 | <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> |
12 | 12 |
|
13 | 13 | <properties> |
14 | 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
15 | | - <BUILD_NUMBER>Unknown</BUILD_NUMBER> |
| 15 | + <BUILD_NUMBER>1.0</BUILD_NUMBER> |
16 | 16 | </properties> |
17 | 17 |
|
18 | 18 | <repositories> |
19 | 19 | <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> |
22 | 22 | </repository> |
23 | 23 | </repositories> |
24 | 24 |
|
25 | 25 | <dependencies> |
26 | 26 | <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> |
32 | 61 | </dependency> |
33 | 62 | </dependencies> |
34 | 63 |
|
35 | 64 | <build> |
36 | 65 | <defaultGoal>clean package install</defaultGoal> |
37 | | - <finalName>DepenizenBungee</finalName> |
| 66 | + <finalName>denizen-velocity</finalName> |
38 | 67 | <sourceDirectory>${basedir}/src/main/java</sourceDirectory> |
39 | 68 | <resources> |
40 | 69 | <resource> |
41 | 70 | <targetPath>.</targetPath> |
42 | 71 | <filtering>true</filtering> |
43 | 72 | <directory>${basedir}/src/main/resources/</directory> |
44 | 73 | <includes> |
45 | | - <include>*.yml</include> |
| 74 | + <include>*</include> |
| 75 | + <include>**/*</include> |
46 | 76 | </includes> |
47 | 77 | </resource> |
48 | 78 | </resources> |
|
52 | 82 | <artifactId>maven-jar-plugin</artifactId> |
53 | 83 | <version>3.1.0</version> |
54 | 84 | <configuration> |
55 | | - <finalName>DepenizenBungee-${project.version}-b${BUILD_NUMBER}</finalName> |
| 85 | + <finalName>denizen-velocity-${project.version}</finalName> |
56 | 86 | </configuration> |
57 | 87 | </plugin> |
58 | 88 | <plugin> |
59 | 89 | <groupId>org.apache.maven.plugins</groupId> |
60 | 90 | <artifactId>maven-compiler-plugin</artifactId> |
61 | | - <version>3.8.0</version> |
| 91 | + <version>3.8.1</version> |
62 | 92 | <configuration> |
63 | | - <source>1.8</source> |
64 | | - <target>1.8</target> |
| 93 | + <source>17</source> |
| 94 | + <target>17</target> |
65 | 95 | </configuration> |
66 | 96 | </plugin> |
67 | 97 | </plugins> |
|
0 commit comments