Skip to content

Commit c77d58d

Browse files
committed
Use Adventure 5.0.0-SNAPSHOT
Fixes #309
1 parent c552a8a commit c77d58d

File tree

50 files changed

+1247
-326
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+1247
-326
lines changed

V1_10/pom.xml

Lines changed: 29 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<parent>
2828
<groupId>com.loohp</groupId>
2929
<artifactId>InteractiveChat-Parent</artifactId>
30-
<version>4.3.5.0</version>
30+
<version>4.3.5.1</version>
3131
</parent>
3232

3333
<artifactId>InteractiveChat-V1_10</artifactId>
@@ -37,6 +37,10 @@
3737
<id>dmulloy2-repo</id>
3838
<url>https://repo.dmulloy2.net/repository/public/</url>
3939
</repository>
40+
<repository>
41+
<id>central-snapshots</id>
42+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
43+
</repository>
4044
<repository>
4145
<id>jitpack.io</id>
4246
<url>https://jitpack.io</url>
@@ -63,37 +67,55 @@
6367
<dependency>
6468
<groupId>net.kyori</groupId>
6569
<artifactId>adventure-text-serializer-gson</artifactId>
66-
<version>4.25.0</version>
70+
<version>5.0.0-SNAPSHOT</version>
6771
<scope>provided</scope>
6872
</dependency>
73+
<dependency>
74+
<groupId>net.kyori</groupId>
75+
<artifactId>adventure-text-serializer-json</artifactId>
76+
<version>5.0.0-SNAPSHOT</version>
77+
<scope>compile</scope>
78+
</dependency>
6979
<dependency>
7080
<groupId>net.kyori</groupId>
7181
<artifactId>adventure-text-serializer-legacy</artifactId>
72-
<version>4.25.0</version>
82+
<version>5.0.0-SNAPSHOT</version>
7383
<scope>provided</scope>
7484
</dependency>
7585
<dependency>
7686
<groupId>net.kyori</groupId>
7787
<artifactId>adventure-text-serializer-plain</artifactId>
78-
<version>4.25.0</version>
88+
<version>5.0.0-SNAPSHOT</version>
7989
<scope>provided</scope>
8090
</dependency>
8191
<dependency>
8292
<groupId>net.kyori</groupId>
8393
<artifactId>adventure-text-serializer-gson</artifactId>
84-
<version>4.25.0</version>
94+
<version>5.0.0-SNAPSHOT</version>
8595
<scope>provided</scope>
8696
</dependency>
97+
<dependency>
98+
<groupId>net.kyori</groupId>
99+
<artifactId>adventure-text-serializer-json</artifactId>
100+
<version>5.0.0-SNAPSHOT</version>
101+
<scope>compile</scope>
102+
</dependency>
87103
<dependency>
88104
<groupId>net.kyori</groupId>
89105
<artifactId>adventure-api</artifactId>
90-
<version>4.25.0</version>
106+
<version>5.0.0-SNAPSHOT</version>
91107
<scope>provided</scope>
92108
</dependency>
109+
<dependency>
110+
<groupId>net.kyori</groupId>
111+
<artifactId>adventure-key</artifactId>
112+
<version>5.0.0-SNAPSHOT</version>
113+
<scope>compile</scope>
114+
</dependency>
93115
<dependency>
94116
<groupId>net.kyori</groupId>
95117
<artifactId>adventure-nbt</artifactId>
96-
<version>4.25.0</version>
118+
<version>5.0.0-SNAPSHOT</version>
97119
<scope>provided</scope>
98120
</dependency>
99121
<dependency>

V1_11/pom.xml

Lines changed: 29 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<parent>
2828
<groupId>com.loohp</groupId>
2929
<artifactId>InteractiveChat-Parent</artifactId>
30-
<version>4.3.5.0</version>
30+
<version>4.3.5.1</version>
3131
</parent>
3232

3333
<artifactId>InteractiveChat-V1_11</artifactId>
@@ -37,6 +37,10 @@
3737
<id>dmulloy2-repo</id>
3838
<url>https://repo.dmulloy2.net/repository/public/</url>
3939
</repository>
40+
<repository>
41+
<id>central-snapshots</id>
42+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
43+
</repository>
4044
<repository>
4145
<id>jitpack.io</id>
4246
<url>https://jitpack.io</url>
@@ -63,37 +67,55 @@
6367
<dependency>
6468
<groupId>net.kyori</groupId>
6569
<artifactId>adventure-text-serializer-gson</artifactId>
66-
<version>4.25.0</version>
70+
<version>5.0.0-SNAPSHOT</version>
6771
<scope>provided</scope>
6872
</dependency>
73+
<dependency>
74+
<groupId>net.kyori</groupId>
75+
<artifactId>adventure-text-serializer-json</artifactId>
76+
<version>5.0.0-SNAPSHOT</version>
77+
<scope>compile</scope>
78+
</dependency>
6979
<dependency>
7080
<groupId>net.kyori</groupId>
7181
<artifactId>adventure-text-serializer-legacy</artifactId>
72-
<version>4.25.0</version>
82+
<version>5.0.0-SNAPSHOT</version>
7383
<scope>provided</scope>
7484
</dependency>
7585
<dependency>
7686
<groupId>net.kyori</groupId>
7787
<artifactId>adventure-text-serializer-plain</artifactId>
78-
<version>4.25.0</version>
88+
<version>5.0.0-SNAPSHOT</version>
7989
<scope>provided</scope>
8090
</dependency>
8191
<dependency>
8292
<groupId>net.kyori</groupId>
8393
<artifactId>adventure-text-serializer-gson</artifactId>
84-
<version>4.25.0</version>
94+
<version>5.0.0-SNAPSHOT</version>
8595
<scope>provided</scope>
8696
</dependency>
97+
<dependency>
98+
<groupId>net.kyori</groupId>
99+
<artifactId>adventure-text-serializer-json</artifactId>
100+
<version>5.0.0-SNAPSHOT</version>
101+
<scope>compile</scope>
102+
</dependency>
87103
<dependency>
88104
<groupId>net.kyori</groupId>
89105
<artifactId>adventure-api</artifactId>
90-
<version>4.25.0</version>
106+
<version>5.0.0-SNAPSHOT</version>
91107
<scope>provided</scope>
92108
</dependency>
109+
<dependency>
110+
<groupId>net.kyori</groupId>
111+
<artifactId>adventure-key</artifactId>
112+
<version>5.0.0-SNAPSHOT</version>
113+
<scope>compile</scope>
114+
</dependency>
93115
<dependency>
94116
<groupId>net.kyori</groupId>
95117
<artifactId>adventure-nbt</artifactId>
96-
<version>4.25.0</version>
118+
<version>5.0.0-SNAPSHOT</version>
97119
<scope>provided</scope>
98120
</dependency>
99121
<dependency>

V1_12/pom.xml

Lines changed: 29 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<parent>
2828
<groupId>com.loohp</groupId>
2929
<artifactId>InteractiveChat-Parent</artifactId>
30-
<version>4.3.5.0</version>
30+
<version>4.3.5.1</version>
3131
</parent>
3232

3333
<artifactId>InteractiveChat-V1_12</artifactId>
@@ -37,6 +37,10 @@
3737
<id>dmulloy2-repo</id>
3838
<url>https://repo.dmulloy2.net/repository/public/</url>
3939
</repository>
40+
<repository>
41+
<id>central-snapshots</id>
42+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
43+
</repository>
4044
<repository>
4145
<id>jitpack.io</id>
4246
<url>https://jitpack.io</url>
@@ -63,37 +67,55 @@
6367
<dependency>
6468
<groupId>net.kyori</groupId>
6569
<artifactId>adventure-text-serializer-gson</artifactId>
66-
<version>4.25.0</version>
70+
<version>5.0.0-SNAPSHOT</version>
6771
<scope>provided</scope>
6872
</dependency>
73+
<dependency>
74+
<groupId>net.kyori</groupId>
75+
<artifactId>adventure-text-serializer-json</artifactId>
76+
<version>5.0.0-SNAPSHOT</version>
77+
<scope>compile</scope>
78+
</dependency>
6979
<dependency>
7080
<groupId>net.kyori</groupId>
7181
<artifactId>adventure-text-serializer-legacy</artifactId>
72-
<version>4.25.0</version>
82+
<version>5.0.0-SNAPSHOT</version>
7383
<scope>provided</scope>
7484
</dependency>
7585
<dependency>
7686
<groupId>net.kyori</groupId>
7787
<artifactId>adventure-text-serializer-plain</artifactId>
78-
<version>4.25.0</version>
88+
<version>5.0.0-SNAPSHOT</version>
7989
<scope>provided</scope>
8090
</dependency>
8191
<dependency>
8292
<groupId>net.kyori</groupId>
8393
<artifactId>adventure-text-serializer-gson</artifactId>
84-
<version>4.25.0</version>
94+
<version>5.0.0-SNAPSHOT</version>
8595
<scope>provided</scope>
8696
</dependency>
97+
<dependency>
98+
<groupId>net.kyori</groupId>
99+
<artifactId>adventure-text-serializer-json</artifactId>
100+
<version>5.0.0-SNAPSHOT</version>
101+
<scope>compile</scope>
102+
</dependency>
87103
<dependency>
88104
<groupId>net.kyori</groupId>
89105
<artifactId>adventure-api</artifactId>
90-
<version>4.25.0</version>
106+
<version>5.0.0-SNAPSHOT</version>
91107
<scope>provided</scope>
92108
</dependency>
109+
<dependency>
110+
<groupId>net.kyori</groupId>
111+
<artifactId>adventure-key</artifactId>
112+
<version>5.0.0-SNAPSHOT</version>
113+
<scope>compile</scope>
114+
</dependency>
93115
<dependency>
94116
<groupId>net.kyori</groupId>
95117
<artifactId>adventure-nbt</artifactId>
96-
<version>4.25.0</version>
118+
<version>5.0.0-SNAPSHOT</version>
97119
<scope>provided</scope>
98120
</dependency>
99121
<dependency>

V1_13/pom.xml

Lines changed: 29 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<parent>
2828
<groupId>com.loohp</groupId>
2929
<artifactId>InteractiveChat-Parent</artifactId>
30-
<version>4.3.5.0</version>
30+
<version>4.3.5.1</version>
3131
</parent>
3232

3333
<artifactId>InteractiveChat-V1_13</artifactId>
@@ -37,6 +37,10 @@
3737
<id>dmulloy2-repo</id>
3838
<url>https://repo.dmulloy2.net/repository/public/</url>
3939
</repository>
40+
<repository>
41+
<id>central-snapshots</id>
42+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
43+
</repository>
4044
<repository>
4145
<id>jitpack.io</id>
4246
<url>https://jitpack.io</url>
@@ -63,37 +67,55 @@
6367
<dependency>
6468
<groupId>net.kyori</groupId>
6569
<artifactId>adventure-text-serializer-gson</artifactId>
66-
<version>4.25.0</version>
70+
<version>5.0.0-SNAPSHOT</version>
6771
<scope>provided</scope>
6872
</dependency>
73+
<dependency>
74+
<groupId>net.kyori</groupId>
75+
<artifactId>adventure-text-serializer-json</artifactId>
76+
<version>5.0.0-SNAPSHOT</version>
77+
<scope>compile</scope>
78+
</dependency>
6979
<dependency>
7080
<groupId>net.kyori</groupId>
7181
<artifactId>adventure-text-serializer-legacy</artifactId>
72-
<version>4.25.0</version>
82+
<version>5.0.0-SNAPSHOT</version>
7383
<scope>provided</scope>
7484
</dependency>
7585
<dependency>
7686
<groupId>net.kyori</groupId>
7787
<artifactId>adventure-text-serializer-plain</artifactId>
78-
<version>4.25.0</version>
88+
<version>5.0.0-SNAPSHOT</version>
7989
<scope>provided</scope>
8090
</dependency>
8191
<dependency>
8292
<groupId>net.kyori</groupId>
8393
<artifactId>adventure-text-serializer-gson</artifactId>
84-
<version>4.25.0</version>
94+
<version>5.0.0-SNAPSHOT</version>
8595
<scope>provided</scope>
8696
</dependency>
97+
<dependency>
98+
<groupId>net.kyori</groupId>
99+
<artifactId>adventure-text-serializer-json</artifactId>
100+
<version>5.0.0-SNAPSHOT</version>
101+
<scope>compile</scope>
102+
</dependency>
87103
<dependency>
88104
<groupId>net.kyori</groupId>
89105
<artifactId>adventure-api</artifactId>
90-
<version>4.25.0</version>
106+
<version>5.0.0-SNAPSHOT</version>
91107
<scope>provided</scope>
92108
</dependency>
109+
<dependency>
110+
<groupId>net.kyori</groupId>
111+
<artifactId>adventure-key</artifactId>
112+
<version>5.0.0-SNAPSHOT</version>
113+
<scope>compile</scope>
114+
</dependency>
93115
<dependency>
94116
<groupId>net.kyori</groupId>
95117
<artifactId>adventure-nbt</artifactId>
96-
<version>4.25.0</version>
118+
<version>5.0.0-SNAPSHOT</version>
97119
<scope>provided</scope>
98120
</dependency>
99121
<dependency>

0 commit comments

Comments
 (0)