Skip to content

Commit

Permalink
fix!
Browse files Browse the repository at this point in the history
  • Loading branch information
Ultrasonic1209 committed Nov 25, 2021
1 parent 0ff8f2a commit 9843f74
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ gradle-app.setting
*.lock
.gradle/7.3/fileHashes/resourceHashesCache.bin
.gradle/7.3/executionHistory/executionHistory.bin
*.probe
20 changes: 16 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version "7.1.0"
}

group 'xyz.ultras-playroom.mc'
version '1.1.0'

repositories {
mavenCentral()
maven {
Expand All @@ -13,9 +11,23 @@ repositories {
}
}

group 'xyz.ultras-playroom.mc'
version '1.1.0'


dependencies {
implementation 'com.velocitypowered:velocity-api:3.0.1'
annotationProcessor 'com.velocitypowered:velocity-api:3.0.1'

implementation "org.spongepowered:configurate-hocon:4.0.0"
implementation 'org.spongepowered:configurate-hocon:4.1.2'
}

jar {
manifest {
attributes "Main-Class": "Lobbyist.LobbyistMain"
}
}

shadowJar {
archiveClassifier.set('')
}

0 comments on commit 9843f74

Please sign in to comment.