generated from kpavlov/awesome-kotlin-maven-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Kotlin upgrade, Spring client update (#6)
This pull request includes several changes across multiple files to improve the build process, update dependencies, and enhance documentation. - Implemented lazy-loaded properties for more efficient API method initialization. - Test cases have been updated accordingly to accommodate the new access pattern. - **Workaround for polymorphic deserialization without supertype.** Deserialize into JsonNode and then programmaticaly to the correct type --------- Co-authored-by: Konstantin Pavlov <{ID}+{username}@users.noreply.github.com>
- Loading branch information
Showing
13 changed files
with
609 additions
and
167 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Build and Publish Docs to GitHub Pages | ||
|
||
on: | ||
release: | ||
types: | ||
- created | ||
push: | ||
branches: [ "main" ] | ||
# Allow running this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
deploy: | ||
|
||
permissions: | ||
pages: write # to deploy to Pages | ||
id-token: write # to verify the deployment originates from an appropriate source | ||
|
||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 23 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '23' | ||
distribution: 'temurin' | ||
cache: maven | ||
|
||
- name: Generate Dokka Site | ||
run: |- | ||
mvn clean compile site && \ | ||
mkdir -p target/docs && \ | ||
cp -R target/dokka target/docs/api | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: target/docs/ | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,10 +1,24 @@ | ||
build: | ||
mvn clean verify site | ||
|
||
lint: | ||
# brew install ktlint | ||
ktlint --format | ||
# https://docs.openrewrite.org/recipes/maven/bestpractices | ||
mvn -U org.openrewrite.maven:rewrite-maven-plugin:run \ | ||
-Drewrite.activeRecipes=org.openrewrite.maven.BestPractices \ | ||
-Drewrite.exportDatatables=true | ||
mvn clean verify site | ||
|
||
apidocs: | ||
mvn mvn clean compile site && \ | ||
mkdir -p target/docs && \ | ||
cp -R target/dokka target/docs/api | ||
|
||
lint:prepare | ||
ktlint '!**/target/**' && \ | ||
mvn spotless:check | ||
|
||
# https://docs.openrewrite.org/recipes/maven/bestpractices | ||
format:prepare | ||
ktlint --format '!**/target/**' && \ | ||
mvn spotless:apply && \ | ||
mvn -U org.openrewrite.maven:rewrite-maven-plugin:run \ | ||
-Drewrite.activeRecipes=org.openrewrite.maven.BestPractices \ | ||
-Drewrite.exportDatatables=true | ||
|
||
prepare: | ||
brew install ktlint --quiet | ||
|
||
all: format lint build |
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
Oops, something went wrong.