Skip to content

Commit

Permalink
Maybe a fix for the tests?
Browse files Browse the repository at this point in the history
Took 4 minutes
  • Loading branch information
JakeGBLP committed Jul 16, 2024
1 parent 665a9d9 commit cadd2ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
run: ./gradlew shadowjar
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
Expand Down
5 changes: 2 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ repositories {
dependencies {
implementation 'org.jetbrains:annotations:20.1.0'
compileOnly("io.papermc.paper:paper-api:1.20.6-R0.1-SNAPSHOT")
compileOnly 'com.github.SkriptLang:Skript:2.9.0'
compileOnly 'com.github.SkriptLang:Skript:2.9.0'
implementation 'org.bstats:bstats-bukkit:3.0.2'
implementation 'com.vdurmont:semver4j:3.1.0'
shadow 'junit:junit:3.8.2'
Expand All @@ -55,5 +55,4 @@ processResources {
shadowJar {
archiveFileName = project.name + "-" + project.version + ".jar"
relocate 'org.bstats', 'it.jakegblp.lusk.libs.bstats'
}
defaultTasks 'shadowJar'
}

0 comments on commit cadd2ca

Please sign in to comment.