Skip to content

Commit

Permalink
Fix bStats shade and compile fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ThisTestUser committed Sep 23, 2024
1 parent 7967fd5 commit e9ff578
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
Expand All @@ -19,7 +19,7 @@ jobs:
run: chmod +x ./gradlew

- name: Setup Gradle
uses: gradle/gradle-build-action@v2
uses: gradle/actions/setup-gradle@v4

- name: Get Minecraft Version
run: echo "MC_VERSION=$(${{ github.workspace }}/gradlew -q getMCVersion)" >> $GITHUB_ENV
Expand All @@ -31,7 +31,7 @@ jobs:
run: ./gradlew build

- name: Upload a Build Artifact
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v4
if: success()
with:
name: LargeRaids
Expand Down
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,13 @@ repositories {

tasks.withType<ShadowJar> {
configurations = listOf(project.configurations.shadow.get())
relocate("org.bstats", "com.solarrabbit.largeraids.bstats")
}

dependencies {
paperDevBundle(mcVersion + "-R0.1-SNAPSHOT")
shadow("org.bstats:bstats-bukkit:2.0.1")
implementation("me.clip:placeholderapi:2.11.1")
implementation("me.clip:placeholderapi:2.11.6")
implementation("io.lumine:Mythic-Dist:5.2.0-SNAPSHOT")
// paperweightDevBundle("com.example.paperfork", "1.19.2-R0.1-SNAPSHOT")

Expand Down

0 comments on commit e9ff578

Please sign in to comment.