-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into dev/layered-generator
- Loading branch information
Showing
967 changed files
with
10,909 additions
and
11,550 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
Validating CODEOWNERS rules …
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,19 +1,14 @@ | ||
# Global owners, automatically request review when pull request is submitted | ||
* @dfsek @solonovamax | ||
* @dfsek @solonovamax @duplexsystem @astrsh @justaureus | ||
|
||
# Platforms | ||
## dfsek wrote the majority of the platform impls | ||
/platforms/bukkit/ @dfsek | ||
/platforms/fabric/ @dfsek | ||
/platforms/forge/ @dfsek | ||
/platforms/sponge/ @dfsek | ||
## solonovamax is working on the region generator (unless duplexsystem takes it over) | ||
/platforms/region/ @solonovamax | ||
/platforms/ @dfsek @solonovamax @duplexsystem @justaureus | ||
/platforms/bukkit @dfsek @solonovamax @duplexsystem @justaureus @OakLoaf | ||
|
||
# Common | ||
/common/ @dfsek @solonovamax | ||
/common/ @dfsek @solonovamax @duplexsystem @astrsh | ||
|
||
# Gradle Stuff | ||
## Most gradle stuff was written by solonovamax | ||
/buildSrc/ @solonovamax | ||
*.gradle.kts @solonovamax | ||
/buildSrc/ @dfsek @solonovamax @duplexsystem | ||
*.gradle.kts @dfsek @solonovamax @duplexsystem | ||
/gradle/ @dfsek @solonovamax @duplexsystem |
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
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,47 @@ | ||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
# This workflow will build a package using Gradle and then publish it to GitHub packages when a release is created | ||
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#Publishing-using-gradle | ||
|
||
name: Gradle Build | ||
|
||
on: [ pull_request ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
|
||
steps: | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | ||
- name: Set up JDK 21 | ||
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 | ||
with: | ||
java-version: '21' | ||
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 | ||
|
||
- uses: burrunan/gradle-cache-action@03c71a8ba93d670980695505f48f49daf43704a6 | ||
name: Build Terra | ||
with: | ||
# Specifies arguments for Gradle execution | ||
# If arguments is missing or empty, then Gradle is not executed | ||
arguments: build | ||
# arguments can be multi-line for better readability | ||
# arguments: | | ||
# --no-paralell | ||
# build | ||
# -x test | ||
# Gradle version to use for execution: | ||
# wrapper (default), current, rc, nightly, release-nightly, or | ||
# versions like 6.6 (see https://services.gradle.org/versions/all) | ||
gradle-version: wrapper | ||
# Properties are passed as -Pname=value | ||
properties: | | ||
kotlin.js.compiler=ir | ||
kotlin.parallel.tasks.in.project=true |
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 |
---|---|---|
|
@@ -249,3 +249,5 @@ nbdist/ | |
|
||
platforms/**/run/** | ||
|
||
#Vale Config File | ||
**/.vale.ini |
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.