Skip to content
This repository was archived by the owner on Feb 27, 2025. It is now read-only.

Commit 0ea7f01

Browse files
committed
Initial commit
0 parents  commit 0ea7f01

File tree

10,781 files changed

+2361149
-0
lines changed

Some content is hidden

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

10,781 files changed

+2361149
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module version="4">
3+
<component name="FacetManager">
4+
<facet type="minecraft" name="Minecraft">
5+
<configuration>
6+
<autoDetectTypes>
7+
<platformType>PAPER</platformType>
8+
<platformType>ADVENTURE</platformType>
9+
</autoDetectTypes>
10+
<projectReimportVersion>1</projectReimportVersion>
11+
</configuration>
12+
</facet>
13+
</component>
14+
</module>
Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<parent>
8+
<artifactId>commandapi</artifactId>
9+
<groupId>dev.jorel</groupId>
10+
<version>9.6.2-SNAPSHOT</version>
11+
</parent>
12+
13+
<artifactId>commandapi-documentation-code</artifactId>
14+
15+
<repositories>
16+
<repository>
17+
<id>minecraft-libraries</id>
18+
<url>https://libraries.minecraft.net</url>
19+
</repository>
20+
<repository>
21+
<id>papermc</id>
22+
<url>https://repo.papermc.io/repository/maven-public/</url>
23+
</repository>
24+
<repository>
25+
<id>codemc-repo</id>
26+
<url>https://repo.codemc.org/repository/maven-public/</url>
27+
<layout>default</layout>
28+
</repository>
29+
</repositories>
30+
31+
<dependencies>
32+
<!-- Minecraft dependencies -->
33+
<dependency>
34+
<groupId>com.mojang</groupId>
35+
<artifactId>brigadier</artifactId>
36+
<version>1.0.17</version>
37+
<scope>provided</scope>
38+
</dependency>
39+
<dependency>
40+
<groupId>com.mojang</groupId>
41+
<artifactId>authlib</artifactId>
42+
<version>3.3.39</version>
43+
<scope>provided</scope>
44+
</dependency>
45+
46+
<!-- Bukkit dependencies -->
47+
<dependency>
48+
<groupId>net.kyori</groupId>
49+
<artifactId>adventure-platform-bukkit</artifactId>
50+
<version>4.2.0</version>
51+
</dependency>
52+
<dependency>
53+
<groupId>io.papermc.paper</groupId>
54+
<artifactId>paper-api</artifactId>
55+
<version>${paper.version}</version>
56+
<scope>provided</scope>
57+
</dependency>
58+
59+
<!-- Testing examples dependencies -->
60+
<dependency>
61+
<groupId>com.github.seeseemelk</groupId>
62+
<artifactId>MockBukkit-v1.20</artifactId>
63+
<version>3.9.0</version>
64+
</dependency>
65+
<dependency>
66+
<!-- Note: This is before the other CommandAPI dependencies so example `testLoadMockCommandAPI2`
67+
can resolve the correct instance of the CommandAPIVersionHandler class -->
68+
<groupId>dev.jorel</groupId>
69+
<artifactId>commandapi-bukkit-test-toolkit</artifactId>
70+
<version>${project.version}</version>
71+
</dependency>
72+
<dependency>
73+
<groupId>org.junit.jupiter</groupId>
74+
<artifactId>junit-jupiter-engine</artifactId>
75+
<version>5.8.2</version>
76+
</dependency>
77+
78+
<!-- CommandAPI -->
79+
<dependency>
80+
<groupId>dev.jorel</groupId>
81+
<artifactId>commandapi-bukkit-core</artifactId>
82+
<version>${project.version}</version>
83+
</dependency>
84+
<dependency>
85+
<groupId>dev.jorel</groupId>
86+
<artifactId>commandapi-bukkit-kotlin</artifactId>
87+
<version>${project.version}</version>
88+
</dependency>
89+
90+
<!-- Other -->
91+
<dependency>
92+
<groupId>de.tr7zw</groupId>
93+
<artifactId>item-nbt-api</artifactId>
94+
<version>2.11.1</version>
95+
</dependency>
96+
<dependency>
97+
<groupId>org.jetbrains.kotlin</groupId>
98+
<artifactId>kotlin-stdlib</artifactId>
99+
<version>${kotlin.version}</version>
100+
</dependency>
101+
</dependencies>
102+
103+
<build>
104+
<plugins>
105+
<!-- Kotlin examples -->
106+
<plugin>
107+
<groupId>org.jetbrains.kotlin</groupId>
108+
<artifactId>kotlin-maven-plugin</artifactId>
109+
<version>${kotlin.version}</version>
110+
<executions>
111+
<execution>
112+
<id>test-compile</id>
113+
<goals>
114+
<goal>test-compile</goal>
115+
</goals>
116+
<configuration>
117+
<sourceDirs>
118+
<sourceDir>${project.basedir}/src/main/kotlin/</sourceDir>
119+
</sourceDirs>
120+
</configuration>
121+
</execution>
122+
</executions>
123+
<configuration>
124+
<jvmTarget>16</jvmTarget>
125+
</configuration>
126+
</plugin>
127+
</plugins>
128+
</build>
129+
</project>

0 commit comments

Comments
 (0)