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

Commit 7f60d52

Browse files
authored
Initial commit
0 parents  commit 7f60d52

File tree

10 files changed

+433
-0
lines changed

10 files changed

+433
-0
lines changed

.gitignore

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Compiled class file
2+
*.class
3+
4+
# Log file
5+
*.log
6+
7+
# BlueJ files
8+
*.ctxt
9+
10+
# Mobile Tools for Java (J2ME)
11+
.mtj.tmp/
12+
13+
# Package Files #
14+
*.jar
15+
*.war
16+
*.nar
17+
*.ear
18+
*.zip
19+
*.tar.gz
20+
*.rar
21+
22+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23+
hs_err_pid*
24+
25+
.gradle
26+
/build/
27+
28+
# Ignore Gradle GUI config
29+
gradle-app.setting
30+
31+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
32+
!gradle-wrapper.jar
33+
34+
# Cache of project
35+
.gradletasknamecache
36+
37+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
38+
# gradle/wrapper/gradle-wrapper.properties
39+
40+
.idea

build.gradle.kts

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
plugins {
2+
id("java")
3+
}
4+
5+
group = "xyz.galaxyy.lualink.addons.example"
6+
version = "1.0-SNAPSHOT"
7+
8+
repositories {
9+
mavenCentral()
10+
maven("https://repo.purpurmc.org/snapshots")
11+
maven("https://jitpack.io")
12+
maven {
13+
url = uri("https://maven.pkg.github.com/lualink/LuaLink") // TODO: Change to the LuaLink organization
14+
}
15+
}
16+
17+
dependencies {
18+
testImplementation(platform("org.junit:junit-bom:5.9.1"))
19+
testImplementation("org.junit.jupiter:junit-jupiter")
20+
compileOnly("org.purpurmc.purpur:purpur-api:1.19.4-R0.1-SNAPSHOT")
21+
compileOnly("xyz.galaxyy.lualink:lualink:1.20.1-10")
22+
}
23+
24+
tasks.test {
25+
useJUnitPlatform()
26+
}

gradle/wrapper/gradle-wrapper.jar

59.3 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Thu Sep 14 19:43:50 MST 2023
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
5+
zipStoreBase=GRADLE_USER_HOME
6+
zipStorePath=wrapper/dists

gradlew

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