Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
95dc2ed
[WIP] feat(build): ✨ add Gradle build system and update project confi…
Zoriot Jan 5, 2026
f93ebc3
feat(build): ✨ update dependencies and improve async task handling in…
Zoriot Jan 5, 2026
d1d4d70
feat(build): ✨ enhance async operation handling and update module reg…
Zoriot Jan 5, 2026
1854a4e
fix(kml): ✨ fix JAXB context handling
Zoriot Jan 10, 2026
6196d97
feat(gen): ✨ refactor zip installation and extraction logic, improve …
Zoriot Jan 10, 2026
1f2e4c2
fix(stats): ✨ add validation for Network Module Build Team connection…
Zoriot Jan 10, 2026
b96fdb0
feat(build): ✨ update build configuration, enhance module registratio…
Zoriot Jan 10, 2026
08e710f
fix(housescripts): ✨ correct block query logic for roof type handling
Zoriot Jan 10, 2026
969aeba
fix(generator): ✨ disable railway generator temporarly
Zoriot Jan 10, 2026
9d75850
fix(generator): ✨ disable field generator temporarily
Zoriot Jan 10, 2026
ab1105f
refactor(generator): ✨ update generator components to use centralized…
Zoriot Jan 10, 2026
bc32c9b
refactor(tree): ✨ update tree component logic and improve menu intera…
Zoriot Jan 11, 2026
43cae29
feat(util): Update GeneratorUtils to 1.7.3
MineFact Jul 18, 2025
6172b0f
refactor(item): ✨ simplify and clean up item metadata handling logic
Zoriot Jan 11, 2026
b7c57c1
feat(util): Update Item Utils to 1.3.2
MineFact Jul 18, 2025
fd51154
feat(util): Update Item Utils to 1.3.3
MineFact Jul 18, 2025
8a6e95b
feat(util): Update Item Utils to 1.3.4
MineFact Jul 18, 2025
90d8b41
refactor(build): ✨ remove unused authlib dependency from build config…
Zoriot Jan 11, 2026
8f238c8
refactor(all): ✨ extract utilities into alps-lib
Zoriot Jan 11, 2026
9873d3e
fix(nav): ✨ fix others/default warp group
Zoriot Jan 12, 2026
c16bcd0
fix(gen/kml): ✨ fix coordinate parsing and improve error handling
Zoriot Jan 12, 2026
66b91b0
refactor(build): ✨ rename packages to align with buildteamtools struc…
Zoriot Jan 12, 2026
ee87f25
feat(build): ✨ add GitHub Actions workflow for Java CI with Gradle
Zoriot Jan 13, 2026
21f8f3c
fix(build): ✨ improve API key instructions and enhance module shutdow…
Zoriot Jan 16, 2026
c2956cb
fix(build): ✨ adjust click handler logic in MainMenu for warp menu ac…
Zoriot Jan 16, 2026
f032280
chore(build): ✨ Update library versions & cleanup build
Zoriot Jan 19, 2026
aa65f3a
fix(docs): 🐛 Fix the Wiki links to point to a internal url
Zoriot Jan 26, 2026
1ca9f4d
fix(docs): 🐛 Point to wiki for getting the api key
Zoriot Jan 26, 2026
d6cd5d5
fix(build): ✨ Add override annotation to getWikiPage method in Genera…
Zoriot Jan 26, 2026
ea6ade8
feat(build): ✨ Remove commit distance from version for snaps
Zoriot Jan 26, 2026
dd43986
build: ci - add workflow dispatch + change branch to main
Zoriot Jan 26, 2026
4c9d2ac
fix(generator): require fawe instead of also worldedit
Zoriot Jan 26, 2026
a2280e6
fix(nav): 🐛 Add other warp group always to warp group selection menu
Zoriot Feb 2, 2026
08112b7
feat: change from sledgehammer to navigation
Zoriot Feb 2, 2026
23a7991
feat: update readme
Zoriot Feb 2, 2026
52ee033
Included the basic metrics of bStats
Redstoner507 Feb 3, 2026
48046cf
build(qodana): Add all qodana includes + baseline & pr analysis
Zoriot Feb 3, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle

name: Java CI with Gradle

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:

jobs:
build:

runs-on: ubuntu-latest
permissions:
contents: read

steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0 # full history
fetch-tags: true # grab your tags
# Make sure we check out by branch name, not just SHA:
ref: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref_name }}

- name: Set up JDK 21
uses: actions/setup-java@v5
with:
java-version: '21'
distribution: 'temurin'

# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5

- name: Build with Gradle Wrapper
run: ./gradlew clean build

- uses: actions/upload-artifact@v6
with:
name: Staging-Build
path: build/libs
compression-level: '9'
Loading