8000 Begin working on tests · CommandAPI/CommandAPI@f80d789 · GitHub
[go: up one dir, main page]

Skip to content

Commit f80d789

Browse files
committed
Begin working on tests
1 parent ddc5a19 commit f80d789

File tree

52 files changed

+788
-69
lines changed

Some content is hidden

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

52 files changed

+788
-69
lines changed

commandapi-platforms/commandapi-bukkit/commandapi-bukkit-test/commandapi-bukkit-kotlin-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<dependency>
5656
<!-- Inherit 1.19.2 implemented MockNMS -->
5757
<groupId>dev.jorel</groupId>
58-
<artifactId>commandapi-bukkit-test-impl-1.19.2</artifactId>
58+
<artifactId>commandapi-test-bukkit-impl-1.19.2</artifactId>
5959
<version>${project.version}</version>
6060
<scope>test</scope>
6161
</dependency>

commandapi-platforms/commandapi-bukkit/commandapi-bukkit-test/commandapi-bukkit-test-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
</dependency>
8484
<dependency>
8585
<groupId>dev.jorel</groupId>
86-
<artifactId>commandapi-bukkit-test-impl</artifactId>
86+
<artifactId>commandapi-test-bukkit-impl</artifactId>
8787
<version>${project.version}</version>
8888
</dependency>
8989

commandapi-platforms/commandapi-bukkit/commandapi-bukkit-test/pom.xml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,6 @@
2929
<artifactId>commandapi-bukkit-test</artifactId>
3030
<packaging>pom</packaging>
3131
<modules>
32-
<!-- Test MockNMS implementations -->
33-
<module>commandapi-bukkit-test-impl</module>
34-
<module>commandapi-bukkit-test-impl-1.20.5</module>
35-
<module>commandapi-bukkit-test-impl-1.20.3</module>
36-
<module>commandapi-bukkit-test-impl-1.20.2</module>
37-
<module>commandapi-bukkit-test-impl-1.20</module>
38-
<module>commandapi-bukkit-test-impl-1.19.4</module>
39-
<module>commandapi-bukkit-test-impl-1.19.2</module>
40-
<module>commandapi-bukkit-test-impl-1.18</module>
41-
<module>commandapi-bukkit-test-impl-1.17</module>
42-
<module>commandapi-bukkit-test-impl-1.16.5</module>
43-
4432
<!-- Tests -->
4533
<module>c 10000 ommandapi-bukkit-kotlin-test</module>
4634
<module>commandapi-bukkit-test-tests</module>
Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323
<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">
2424

2525
<parent>
26-
<artifactId>commandapi-bukkit-test</artifactId>
26+
<artifactId>commandapi-test-bukkit</artifactId>
2727
<groupId>dev.jorel</groupId>
2828
<version>9.5.0-SNAPSHOT</version>
2929
</parent>
3030

3131
<modelVersion>4.0.0</modelVersion>
3232

33-
<artifactId>commandapi-bukkit-test-impl-1.16.5</artifactId>
33+
<artifactId>commandapi-test-bukkit-impl-1.16.5</artifactId>
3434

3535
<properties>
3636
<spigot.version>1.16.5-R0.1-SNAPSHOT</spigot.version>
@@ -90,12 +90,7 @@
9090
</dependency>
9191
<dependency>
9292
<groupId>dev.jorel</groupId>
93-
<artifactId>commandapi-bukkit-test-impl</artifactId>
94-
<version>${project.version}</version>
95-
</dependency>
96-
<dependency>
97-
<groupId>dev.jorel</groupId>
98-
<artifactId>commandapi-paper-shade</artifactId>
93+
<artifactId>commandapi-test-bukkit-impl</artifactId>
9994
<version>${project.version}</version>
10095
</dependency>
10196

@@ -117,6 +112,12 @@
117112
<version>${spigot.version}</version>
118113
<scope>provided</scope>
119114
</dependency>
115+
<dependency>
116+
<groupId>dev.jorel</groupId>
117+
<artifactId>commandapi-paper-shade</artifactId>
118+
<version>${project.version}</version>
119+
</dependency>
120+
120121

121122
<!--
122123
Spigot 1.16.5 is really fussy and wants log4j. If you do give it
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323
<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">
2424

2525
<parent>
26-
<artifactId>commandapi-bukkit-test</artifactId>
26+
<artifactId>commandapi-test-bukkit</artifactId>
2727
<groupId>dev.jorel</groupId>
2828
<version>9.5.0-SNAPSHOT</version>
2929
</parent>
3030

3131
<modelVersion>4.0.0</modelVersion>
3232

33-
<artifactId>commandapi-bukkit-test-impl-1.17</artifactId>
33+
<artifactId>commandapi-test-bukkit-impl-1.17</artifactId>
3434

3535
<properties>
3636
<minecraft.mappings>1.17-R0.1-SNAPSHOT</minecraft.mappings>
@@ -91,7 +91,7 @@
9191
</dependency>
9292
<dependency>
9393
<groupId>dev.jorel</groupId>
94-
<artifactId>commandapi-bukkit-test-impl</artifactId>
94+
<artifactId>commandapi-test-bukkit-impl</artifactId>
9595
<version>${project.version}</version>
9696
</dependency>
9797
<dependency>

0 commit comments

Comments
 (0)
0