Skip to content

Commit c9f883b

Browse files
committed
Init
0 parents  commit c9f883b

19 files changed

Lines changed: 1818 additions & 0 deletions

.gitignore

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
.gradle
2+
build/
3+
!gradle/wrapper/gradle-wrapper.jar
4+
5+
### IntelliJ IDEA ###
6+
.idea
7+
*.iws
8+
*.iml
9+
*.ipr
10+
out/
11+
12+
### Eclipse ###
13+
.apt_generated
14+
.classpath
15+
.factorypath
16+
.project
17+
.settings
18+
.springBeans
19+
.sts4-cache
20+
bin/
21+
22+
### NetBeans ###
23+
/nbproject/private/
24+
/nbbuild/
25+
/dist/
26+
/nbdist/
27+
/.nb-gradle/
28+
29+
### VS Code ###
30+
.vscode/
31+
32+
### Mac OS ###
33+
.DS_Store

LICENSE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

build.gradle.kts

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
plugins {
2+
`java-library`
3+
}
4+
5+
group = "dev.diona"
6+
version = "1.0.0"
7+
8+
repositories {
9+
maven("https://hub.spigotmc.org/nexus/content/groups/public/")
10+
maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots/")
11+
maven("https://repo.viaversion.com")
12+
mavenCentral()
13+
}
14+
15+
dependencies {
16+
compileOnly("org.spigotmc:spigot-api:1.8.8-R0.1-SNAPSHOT")
17+
compileOnly("com.viaversion:viaversion-api:5.0.1")
18+
compileOnly("it.unimi.dsi:fastutil-core:8.5.12")
19+
compileOnly("io.netty:netty-all:4.0.20.Final")
20+
compileOnly("org.checkerframework:checker-qual:3.43.0")
21+
}
22+
23+
tasks.withType<JavaCompile> {
24+
options.encoding = "UTF-8"
25+
targetCompatibility = JavaVersion.VERSION_17.toString()
26+
}

gradle.properties

Whitespace-only changes.

gradle/wrapper/gradle-wrapper.jar

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

gradlew

Lines changed: 249 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)