forked from henkelmax/replay-voice-chat
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
43 changed files
with
379 additions
and
1,369 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,13 +15,15 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 17 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml | ||
settings-path: ${{ github.workspace }} # location for the settings.xml file | ||
distribution: temurin | ||
java-version: | | ||
8 | ||
16 | ||
17 | ||
21 | ||
- name: Build with Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
|
@@ -31,12 +33,17 @@ jobs: | |
- name: Publish to Modrinth | ||
uses: Apehum/[email protected] | ||
with: | ||
name: 'pv-addon-replaymod' | ||
split-releases: true | ||
files-primary: build/libs/*.jar | ||
version-resolver: 'exact' | ||
|
||
changelog-file: client/changelog.md | ||
|
||
modrinth-unfeature-mode: 'subset' | ||
modrinth-id: 4iTfB0AP | ||
modrinth-token: ${{ secrets.MODRINTH_TOKEN }} | ||
|
||
files-primary: build/libs/!(*-@(dev|sources|javadoc)).jar | ||
files-secondary: "" | ||
|
||
- name: Publish to GitHub | ||
uses: Apehum/[email protected] | ||
with: | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
plugins { | ||
kotlin("jvm") version libs.versions.kotlin.get() | ||
id("com.github.johnrengelman.shadow") version libs.versions.shadow.get() apply false | ||
id("gg.essential.multi-version.root") apply false | ||
} | ||
|
||
tasks.jar { | ||
enabled = false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
- 1.21 support |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,4 @@ | ||
org.gradle.jvmargs=-Xmx4G | ||
|
||
java_version=8 | ||
|
||
minecraft_dependency=>=1.16 | ||
minecraft_version=1.20.1 | ||
loader_version=0.15.6 | ||
|
||
fabric_version=0.91.0+1.20.1 | ||
version=2.0.1 | ||
|
||
pv_dependency=2.0.7 | ||
pv_version=2.0.0+ALPHA | ||
|
||
replaymod_dependency=1.16.4-2.6.9 | ||
|
||
mod_name=Replay Voice Chat | ||
mod_version=1.16+-2.0.1 | ||
maven_group=su.plo.replayvoicechat | ||
archives_base_name=pv-addon-replaymod | ||
|
||
minecraft_display_version=1.16+ | ||
release_type=beta | ||
curse_id=605799 | ||
curse_supported_versions=1.16,1.16.1,1.16.2.1.16.3,1.16.4,1.16.5,1.17,1.17.1,1.18,1.18.1,1.18.2,Java 8, Java 11,Java 16,Java 17,Java 18 | ||
modrinth_id=yI6ANuOK | ||
modrinth_supported_version=1.16,1.16.1,1.16.2.1.16.3,1.16.4,1.16.5,1.17,1.17.1,1.18,1.18.1,1.18.2 | ||
org.gradle.jvmargs=-Xmx4G | ||
kotlin.stdlib.default.dependency=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[versions] | ||
kotlin = "1.9.23" | ||
shadow = "8.1.1" | ||
|
||
plasmovoice = "2.0.3" | ||
lombok = "1.18.30" | ||
|
||
[libraries] | ||
plasmovoice = { module = "su.plo.voice.api:client", version.ref = "plasmovoice" } | ||
lombok = { module = "org.projectlombok:lombok", version.ref = "lombok" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.