Skip to content

Commit ecebbd1

Browse files
committed
Fixed build errors
1 parent 170b520 commit ecebbd1

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
java-version: '21'
2020
distribution: 'temurin'
2121
- name: Cache Maven packages
22-
uses: actions/cache@v1
22+
uses: actions/cache@v4
2323
with:
2424
path: ~/.m2
2525
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,10 @@
102102
<id>codemc-repo</id>
103103
<url>https://repo.codemc.org/repository/maven-public/</url>
104104
</repository>
105+
<repository>
106+
<id>jitpack.io</id>
107+
<url>https://jitpack.io</url>
108+
</repository>
105109
</repositories>
106110
<dependencyManagement>
107111
<dependencies>
@@ -164,5 +168,11 @@
164168
<artifactId>log4j-core</artifactId>
165169
<version>2.23.1</version>
166170
</dependency>
171+
<dependency>
172+
<groupId>com.github.DeadSilenceIV</groupId>
173+
<artifactId>AdvancedChestsAPI</artifactId>
174+
<version>3.2-BETA</version>
175+
<scope>provided</scope>
176+
</dependency>
167177
</dependencies>
168178
</project>

0 commit comments

Comments
 (0)