-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from FixedDev/dev
Release 0.7.0
- Loading branch information
Showing
256 changed files
with
2,764 additions
and
2,088 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 |
---|---|---|
@@ -1,30 +1,29 @@ | ||
# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created | ||
# For more information see: https://github.com/actions/setup-java#apache-maven-with-a-settings-path | ||
|
||
name: Maven Package | ||
name: Maven Package to Unnamed Repo and github packages | ||
|
||
on: | ||
release: | ||
types: released | ||
|
||
release: | ||
types: [created] | ||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml | ||
settings-path: ${{ github.workspace }} # location for the settings.xml file | ||
|
||
- name: Build with Maven | ||
run: mvn -B package --file pom.xml | ||
|
||
- name: Publish to GitHub Packages Apache Maven | ||
run: mvn deploy -s $GITHUB_WORKSPACE/settings.xml | ||
env: | ||
GITHUB_TOKEN: ${{ github.token }} | ||
publish: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Java for publishing to unnamed repo | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
server-id: unnamed-releases | ||
server-username: MAVEN_USERNAME | ||
server-password: MAVEN_PASSWORD | ||
- name: Publish to unnamed repo | ||
run: mvn --batch-mode deploy | ||
env: | ||
MAVEN_USERNAME: ${{ secrets.USERNAME }} | ||
MAVEN_PASSWORD: ${{ secrets.TOKEN }} |
237 changes: 0 additions & 237 deletions
237
Brigadier/src/main/java/me/fixeddev/commandflow/brigadier/BrigadierCommandManager.java
This file was deleted.
Oops, something went wrong.
27 changes: 0 additions & 27 deletions
27
Brigadier/src/main/java/me/fixeddev/commandflow/brigadier/BrigadierCommandWrapper.java
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
.../src/main/java/me/fixeddev/commandflow/brigadier/BrigadierDefaultTranslationProvider.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.