Skip to content

Commit 4534a8c

Browse files
authoredMay 19, 2024··
Repository cleanup (#19)
* Delete unnecessary files * Setup multi modular gradle project properly * Rename GUILD.md to README.md * Run Spotless on all files * Update Spring plugin to latest for Java 21 support * Create pre-commit.yaml GHA * Use .yaml for Spring properties * Packaged JShellWrapper * Add docker-compose.yaml * Update README.md
1 parent 3f4bd23 commit 4534a8c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+804
-1054
lines changed
 

‎.github/workflows/pre-commit.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: pre-commit
2+
on:
3+
pull_request:
4+
workflow_dispatch:
5+
6+
jobs:
7+
pre-commit:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
12+
- uses: actions/setup-java@v3
13+
with:
14+
java-version: '21'
15+
distribution: 'corretto'
16+
17+
- uses: gradle/gradle-build-action@v3
18+
with:
19+
gradle-version: 8.7
20+
21+
- name: Build with Gradle
22+
run: gradle build

‎BuildImage.bat

-2
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.