Skip to content

Commit

Permalink
added invui + shadowJar
Browse files Browse the repository at this point in the history
  • Loading branch information
shradinx committed Dec 11, 2024
1 parent 0082a26 commit 818a9bd
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
id 'java'
id 'maven-publish'
id 'com.gradleup.shadow' version '9.0.0-beta4'
}

group = 'org.vindicterra'
Expand Down Expand Up @@ -35,14 +36,19 @@ repositories {
name = "sonatype"
url = "https://oss.sonatype.org/content/groups/public/"
}
maven {
url 'https://repo.xenondevs.xyz/releases'
}
}

dependencies {
compileOnly("io.papermc.paper:paper-api:1.20.2-R0.1-SNAPSHOT")

compileOnly 'org.projectlombok:lombok:1.18.28'

implementation 'org.apache.commons:commons-lang3:3.8.1'
implementation 'commons-lang:commons-lang:2.4'
implementation 'xyz.xenondevs.invui:invui:1.43'

annotationProcessor 'org.projectlombok:lombok:1.18.28'
}

Expand Down Expand Up @@ -72,3 +78,8 @@ processResources {
expand props
}
}

shadowJar {
configurations = [project.configurations.runtimeClasspath]
}

0 comments on commit 818a9bd

Please sign in to comment.