Skip to content

Commit f5023f4

Browse files
committed
Upload
1 parent 6d69450 commit f5023f4

File tree

15 files changed

+622
-1
lines changed

15 files changed

+622
-1
lines changed

.gitignore

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# gradle
2+
3+
.gradle/
4+
build/
5+
out/
6+
classes/
7+
8+
# eclipse
9+
10+
*.launch
11+
12+
# idea
13+
14+
.idea/
15+
*.iml
16+
*.ipr
17+
*.iws
18+
19+
# vscode
20+
21+
.settings/
22+
.vscode/
23+
bin/
24+
.classpath
25+
.project
26+
27+
# macos
28+
29+
*.DS_Store
30+
31+
# paper
32+
33+
run/
34+
35+
# java
36+
37+
hs_err_*.log
38+
replay_*.log
39+
*.hprof
40+
*.jfr

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# SimpleClientAPI
2-
Server API for SimpleClient
2+
Server API for SimpleClient

build.gradle

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
plugins {
2+
id 'java'
3+
id 'xyz.jpenilla.run-paper' version '2.1.0'
4+
}
5+
6+
group = 'simpleclient-api'
7+
version = '0.0.1-dev'
8+
9+
repositories {
10+
mavenCentral()
11+
maven { url = "https://repo.papermc.io/repository/maven-public/" }
12+
maven { url = "https://oss.sonatype.org/content/groups/public/" }
13+
}
14+
15+
dependencies {
16+
compileOnly 'io.papermc.paper:paper-api:1.20.1-R0.1-SNAPSHOT'
17+
}
18+
19+
processResources {
20+
filesMatching('plugin.yml') {
21+
expand 'version': version
22+
}
23+
}
24+
25+
tasks {
26+
runServer {
27+
minecraftVersion '1.20.1'
28+
}
29+
}
30+
31+
tasks.withType(JavaCompile).configureEach {
32+
it.options.release.set 17
33+
}

gradle.properties

Whitespace-only changes.

gradle/wrapper/gradle-wrapper.jar

60.6 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
4+
networkTimeout=10000
5+
zipStoreBase=GRADLE_USER_HOME
6+
zipStorePath=wrapper/dists

gradlew

Lines changed: 245 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)