update curios API
This commit is contained in:
parent
6e6326bbbc
commit
acfb377cee
42
.github/workflows/build-1.20.yml
vendored
Normal file
42
.github/workflows/build-1.20.yml
vendored
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
name: Build-1.18
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "1.20.1" ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Make Gradle Wrapper Executable
|
||||
run: chmod +x ./gradlew
|
||||
working-directory: ${{ github.workspace }}
|
||||
|
||||
- name: Validate Gradle Wrapper
|
||||
uses: gradle/wrapper-validation-action@v1
|
||||
|
||||
- name: Set up JDK 17
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
java-version: '17'
|
||||
distribution: 'temurin'
|
||||
|
||||
- name: Build
|
||||
id: build
|
||||
uses: gradle/gradle-build-action@v2
|
||||
with:
|
||||
arguments: build
|
||||
env:
|
||||
SNAPSHOT: true
|
||||
|
||||
- name: Build Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: Player_Sync
|
||||
path: |
|
||||
build/libs/
|
||||
|
|
@ -122,10 +122,9 @@ dependencies {
|
|||
jarJar.ranged(it, '[1.0,)')
|
||||
}
|
||||
|
||||
runtimeOnly fg.deobf("top.theillusivec4.curios:curios-forge:5.3.2+1.20.1")
|
||||
compileOnly fg.deobf("top.theillusivec4.curios:curios-forge:5.3.2+1.20.1:api")
|
||||
runtimeOnly fg.deobf("top.theillusivec4.curios:curios-forge:5.7.2+1.20.1")
|
||||
compileOnly fg.deobf("top.theillusivec4.curios:curios-forge:5.7.2+1.20.1:api")
|
||||
implementation fg.deobf("curse.maven:MySQL-561280:3685108")
|
||||
implementation group: 'com.zaxxer', name: 'HikariCP', version: '3.4.5'
|
||||
}
|
||||
|
||||
// Example for how to get properties into the manifest for reading at runtime.
|
||||
|
|
|
|||
|
|
@ -3,4 +3,4 @@
|
|||
org.gradle.jvmargs=-Xmx3G
|
||||
org.gradle.daemon=false
|
||||
|
||||
mod_version=1.20.1-1.3.0
|
||||
mod_version=1.20.1-1.3.1a
|
||||
Loading…
Reference in New Issue
Block a user