Skip to content

Commit 12172b6

Browse files
author
SandwichBtw
committed
Initial commit
0 parents  commit 12172b6

7 files changed

Lines changed: 495 additions & 0 deletions

File tree

.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Compiled class file
2+
*.class
3+
4+
# Log file
5+
*.log
6+
7+
# Package Files
8+
*.jar
9+
*.war
10+
*.nar
11+
*.ear
12+
*.zip
13+
*.tar.gz
14+
*.rar
15+
16+
17+
# Gradle
18+
bin/
19+
build/
20+
.gradle
21+
22+
# IntelliJ
23+
out/
24+
.idea/
25+
.idea_modules/
26+
*.iml
27+
*.ipr
28+
*.iws
29+
30+
# Visual Studio Code
31+
.vscode/
32+
.settings/
33+
.code-workspace
34+
35+
# MacOS
36+
.DS_Store

build.gradle.kts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
plugins {
2+
id("java")
3+
}
4+
5+
group = "dev.sandwich.vredirect"
6+
version = "1.0.0"
7+
8+
repositories {
9+
mavenCentral()
10+
maven("https://repo.papermc.io/repository/maven-public/")
11+
}
12+
13+
dependencies {
14+
compileOnly("com.velocitypowered:velocity-api:3.3.0-SNAPSHOT")
15+
annotationProcessor("com.velocitypowered:velocity-api:3.3.0-SNAPSHOT")
16+
}
17+
18+
java.toolchain.languageVersion.set(JavaLanguageVersion.of(17))
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)