Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify Spring ViewComponent and remove ViewAction #23

Merged
merged 13 commits into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
23 changes: 5 additions & 18 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,12 @@ jobs:
cache-dependency-path: |
thymeleaf/build.gradle.kts
core/build.gradle.kts
jte/jte/build.gradle.kts
jte/jte-compiler/build.gradle.kts
jte/kte/build.gradle.kts
jte/build.gradle.kts
kte/build.gradle.kts
- name: make gradle executable
run: chmod +x ./gradlew
- name: publishToMavenLocal
run: ./gradlew :thymeleaf:publishToMavenLocal :jte-compiler:publishToMavenLocal :jte:publishToMavenLocal :core:publishToMavenLocal :kte:publishToMavenLocal
run: ./gradlew :thymeleaf:publishToMavenLocal :jte:publishToMavenLocal :core:publishToMavenLocal :kte:publishToMavenLocal
- name: Cache local Maven repository
uses: actions/cache@v4
with:
Expand Down Expand Up @@ -149,9 +148,8 @@ jobs:
cache-dependency-path: |
thymeleaf/build.gradle.kts
core/build.gradle.kts
jte/jte/build.gradle.kts
jte/jte-compiler/build.gradle.kts
jte/kte/build.gradle.kts
jte/build.gradle.kts
kte/build.gradle.kts
- name: Run chmod to make gradlew executable
run: chmod +x ./gradlew
- name: Publish thymeleaf package to staging
Expand Down Expand Up @@ -187,17 +185,6 @@ jobs:
JRELEASER_GPG_PUBLIC_KEY: ${{ secrets.JRELEASER_GPG_PUBLIC_KEY }}
JRELEASER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew :kte:jreleaserDeploy -DaltDeploymentRepository=local::file:./jte/kte/build/staging-deploy --stacktrace
- name: Publish jte-compiler package to staging
run: ./gradlew :jte-compiler:publish
- name: Publish jte package to maven central
env:
JRELEASER_NEXUS2_USERNAME: ${{ secrets.JRELEASER_NEXUS2_USERNAME }}
JRELEASER_NEXUS2_PASSWORD: ${{ secrets.JRELEASER_NEXUS2_PASSWORD }}
JRELEASER_GPG_PASSPHRASE: ${{ secrets.JRELEASER_GPG_PASSPHRASE }}
JRELEASER_GPG_SECRET_KEY: ${{ secrets.JRELEASER_GPG_SECRET_KEY }}
JRELEASER_GPG_PUBLIC_KEY: ${{ secrets.JRELEASER_GPG_PUBLIC_KEY }}
JRELEASER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew :jte-compiler:jreleaserDeploy -DaltDeploymentRepository=local::file:./jte/jte-compiler/build/staging-deploy --stacktrace
- name: Publish core package to staging
run: ./gradlew :core:publish
- name: Publish core package to maven central
Expand Down
1 change: 0 additions & 1 deletion .run/publishAll.run.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
<option name="taskNames">
<list>
<option value=":thymeleaf:publishToMavenLocal" />
<option value=":jte-compiler:publishToMavenLocal" />
<option value=":jte:publishToMavenLocal" />
<option value=":core:publishToMavenLocal" />
<option value=":kte:publishToMavenLocal" />
Expand Down
Loading
Loading