https://github.com/thriving-dev/java-library-template
π¨ Java library template β’ Gradle Kotlin DSL β’ GitHub Actions CI/CD to build, release & publish to Maven Central β’ Renovate β’ Trivy β’ Javadoc (Pages) β’ Issue & PR Templates
https://github.com/thriving-dev/java-library-template
github-actions github-pages github-template github-templates gradle gradle-kotlin-dsl gradle-multi-project gradle-publish gradle-release java java-library javadoc library maven-central renovate repository-template template trivy trivy-scan
Last synced: 5 months ago
JSON representation
π¨ Java library template β’ Gradle Kotlin DSL β’ GitHub Actions CI/CD to build, release & publish to Maven Central β’ Renovate β’ Trivy β’ Javadoc (Pages) β’ Issue & PR Templates
- Host: GitHub
- URL: https://github.com/thriving-dev/java-library-template
- Owner: thriving-dev
- License: other
- Created: 2023-08-28T22:11:01.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-24T02:30:17.000Z (6 months ago)
- Last Synced: 2025-04-24T03:28:10.448Z (6 months ago)
- Topics: github-actions, github-pages, github-template, github-templates, gradle, gradle-kotlin-dsl, gradle-multi-project, gradle-publish, gradle-release, java, java-library, javadoc, library, maven-central, renovate, repository-template, template, trivy, trivy-scan
- Language: Java
- Homepage: https://www.youtube.com/watch?v=nXs7hSV6ris&list=PL1tfxqbktkFYK5zYjfHxt4wFOus5R9Y3g&index=1
- Size: 613 KB
- Stars: 38
- Watchers: 1
- Forks: 5
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# java-library-template π¨
[](https://github.com/thriving-dev/java-library-template/generate)
[](https://github.com/thriving-dev/java-library-template/actions/workflows/1.pipeline.yml)
[](https://central.sonatype.com/artifact/dev.thriving.oss/java-library-template)
[](CODE_OF_CONDUCT.md)
[](https://thriving-dev.github.io/java-library-template/javadoc/)
[](http://creativecommons.org/licenses/by-nc-sa/4.0/)_TLDR:_ Java Library GitHub Template Repository
* [
Introducing 'java-library-template' in 60s - YouTube](https://www.youtube.com/watch?v=nXs7hSV6ris&list=PL1tfxqbktkFYK5zYjfHxt4wFOus5R9Y3g)
* https://thriving.dev/blog/java-library-development-get-started-quickly-with-java-library-template## Features
- π₯· One-click **automated initial project migration workflow** (GitHub Action)
- **Java 21** (corretto) π€ **Gradle Kotlin DSL**, version catalog
- **GitHub Actions CI/CD pipeline**, π· efficient build pipeline, caching, integration tests, test report & failed test annotations
- π **One-click release** process + **publish** to **Maven Central**
- **Security & π¦ Vulnerability scan** with **[trivy](https://github.com/aquasecurity/trivy)** & GitHub CodeQL Analysis
- **Automated dependency updates** with **[Renovate](https://github.com/renovatebot/renovate)** π€
- **Javadoc** deployed with **GitHub Pages**
- Open Source **Community ready** (Code of Conduct, Contribution guidelines, Issue & PR Templates)## Quick Start
**Demo on YouTube**: [java-library-template 1/7: Getting started (generate from; create PAT, one-click migrate)](https://www.youtube.com/watch?v=lDfg9D0A-nA&list=PL1tfxqbktkFYK5zYjfHxt4wFOus5R9Y3g)
1. [Use this template](https://github.com/thriving-dev/java-library-template/generate) to create your own repository
2. Create & provide a PAT (Personal Access Token) for the CI/CD pipelineThree workflows commit and push changes to the repository and therefore require additional permissions. ('migrate-repo-template', 'publish-javadoc', 'gradle-release')
The jobs expect a secret by the name `CI_GITHUB_TOKEN` that holds a PAT with _write_ permission for _Content_.
To create a new access token, the following steps are required (ref [GitHub documentation](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#creating-a-fine-grained-personal-access-token)):
1. If the new repo owner is an organisation, **enrol** the organisation for '**Fine-grained personal access tokens**'. In the organisation '**Settings > Third-party Access > Personal access tokens**'.
2. Head to the [Developer settings](https://github.com/settings/tokens?type=beta) and **enrol** your personal account for the new '**Fine-grained personal access tokens**'. (That's a one-off for your account and you might already have done this before)
3. Next, click on the button '**Generate new token**' and create a token for the target _**Resource owner**_, with access to your project and the following '**Repository Permissions**'
* **Contents:** **Read** and **Write** access to code
* **Metadata:** **Read** access to metadata
4. Provide your new PAT either as an Organisation secret or a Repository secret with the name `CI_GITHUB_TOKEN`.
3. Trigger the '**!! INITIAL: Migrate Repo Template !!**' workflow
βΉοΈ This workflow automatically 'migrates' all files in your new repository, updating the **gradle project group**, **module name**, **package names**, and **all references** to the repo `/`.
- Head over to **Actions** (1)
- on the left-hand side select the topmost workflow '**!! INITIAL: Migrate Repo Template !!**' (2)
- click the **Run workflow** button (3)
- **fill out** the form & **start** the pipeline (4)(5)
4. Final one-off tasks
* Choose & update the LICENSE, [here](LICENSE)
* Update _Maven Publication_ details [here](java-library-template/build.gradle.kts#L6-L13)
* [Configure GitHub Pages](#prerequisites-configure-github-pages) to deploy branch 'gh-pages' (Javadoc)
* Add secrets required for [publishing to Maven Central](#prerequisites-sonatype-credentials--gpg-signing-key)
* Install & configure renovate app ([instructions](#prerequisites-enable--configure-renovate))## Project Structure
The project template consists of three top-level _folders_:
* `.github/`: Defines the GitHub Actions CI tasks and templates for new pull requests, issues, etc.
* `gradle/`: Contains Gradle Configuration files such as the Gradle [Version Catalog](https://docs.gradle.org/current/userguide/platforms.html) and the Gradle Wrapper.
* `java-library-template/`: The library source code (Gradle sub-project).In addition, following _files_ are worth highlighting:
* `gradle/libs.versions.toml`: A [conventional file](https://docs.gradle.org/current/userguide/platforms.html#sub:conventional-dependencies-toml) to declare a version catalog.
* `settings.gradle.kts`: The multi-project Gradle settings file. Here are all the sub-projects defined.
* `gradle.properties`: Holds the library version, needed & maintained by the CI/CD pipeline [release process](#release-process).
* `**/build.gradle.kts`: Gradle build file## CI/CD Pipeline
The heart of this template is the 'Main GitHub Actions CI/CD Pipeline'. See it in [Actions](https://github.com/thriving-dev/java-library-template/actions/workflows/1.pipeline.yml) (π»).
The workflow encompasses multiple jobs, modelled and linked with dependencies and conditions.
Based on the context (trigger, ref, input arguments) it meets different use cases:
1. **Check**. Build, test, integration test; code quality & vulnerability scans.
Runs for active PRs - as well as part of all subsequent listed use cases.
2. **Latest**. 'Check', publish SNAPSHOT version to Maven Central and Javadoc (GitHub Pages).
Runs on pushes to the main branch.
3. **Release Process**. 'Check', executes (major|minor|patch) release process via the Gradle plugin.
Manually triggered workflow via GitHub UI/API.
3. **Library Release**. 'Check', publish RELEASE version to Maven Central and Javadoc (GitHub Pages).
Runs for pushed tags.## Publish to Maven Central
### Automated Process
The Maven publish process is fully automated and does not require manual action.
- The _main_ branch (per process definition) always is set to the next [SNAPSHOT version](gradle.properties) and is published to the Sonatype snapshot repository with each main CI/CD pipeline run. The pipeline runs e.g. when a PR is merged, but can also be triggered manually.
- Release deployment happens when a new tag is pushed to GitHub. (Part of the [release process](#release-process))### Prerequisites: Sonatype Credentials & GPG Signing Key
The initial setup for your OSSRH repository requires some manual steps and human review (see why), after which your deployment process is typically modified to get components into OSSRH. These are all one time steps.
I recommend to follow the [official guide](https://central.sonatype.org/publish/publish-guide/).In order to deploy your components to OSSRH with Gradle, you have to meet the [requirements](https://central.sonatype.org/publish/requirements/) for your metadata in the pom.xml as well as supply the required, signed components.
> βΉοΈ The publish process uses [io.github.gradle-nexus.publish-plugin](https://plugins.gradle.org/plugin/io.github.gradle-nexus.publish-plugin) under the hood.
The gradle project as well as the CI/CD pipeline is already fully prepared for the publishing process.
The GH actions job [callable.publish-sonatype.yml](.github/workflows/callable.publish-sonatype.yml) requires the following Secrets:| Secret name | Value |
|--------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `OSSRH_USERNAME` | ~The username of your OSSRH account.~ The first part of your OSSRH (Sonatype) user access token. |
| `OSSRH_PASSWORD` | ~The password of your OSSRH account.~ The second part of your OSSRH (Sonatype) user access token. |
| `GPG_SIGNING_KEY` | The GPG private key to sign your artifacts (in ascii-armored format). You can obtain it with `gpg --armor --export-secret-keys ` or you can create one key online on [pgpkeygen.com](https://pgpkeygen.com). |
| `GPG_SIGNING_PASSPHRASE` | The passphrase for unlocking the secret key. (you picked it when creating the key). |Please define the secrets via your repository settings. (Settings > Security > Secrets and variables > Actions)
## Release Process
### Creating a Release
To release a new version via the CI/CD Pipeline, please follow the instructions below.
- Navigate to Actions (1)
- \> Main Pipeline (2)
- Click 'Run workflow' button (3)
- Select a semver release type with the 'Release Library' dropdown (4)
- 'Run the workflow' (5)
The release process includes
- Pipeline run (incl. build & tests) that executes the release plugin (6)
- The release plugin first sets & commits the new version (7a)
- Creates & pushes a new tag (7b)
- Sets the main branch to the next SNAPSHOT version (7c)
The new version is automatically published to Maven Central! π
### Prerequisites: PAT provided as `CI_GITHUB_TOKEN`
The CI/CD 'gradle-release' job expects a secret by the name `CI_GITHUB_TOKEN` that holds a PAT (Personal Access Token) with permission to push tags as part of the release process.If you have been following the Quick Start guide you should already have this configured. Please refer to ['Quick Start' step 2](#quick-start).
## Javadoc
### Use
A Javadoc website of your library, generated by gradle, is 'published' to GitHub Pages by the CI/CD pipeline. In addition to each released version, the current snapshot version (_main_ branch) is published as `current`.
-> visit the [live preview](https://thriving-dev.github.io/java-library-template/javadoc/).
### Prerequisites: Configure GitHub Pages
To host the generated Javadoc, configure GitHub Pages for your repository to deploy from branch `gh-pages`. You can also find all deployments under ['pages-build-deployment'](https://github.com/thriving-dev/java-library-template/actions/workflows/pages/pages-build-deployment).> βΉοΈ The branch is created with the first CI/CD pipeline run. ('Publish javadoc' job)

## Security & CodeQL Analysis
### Common Vulnerabilities and Exposures (CVE)
The libraries gradle dependencies are scanned for known [CVE](https://www.cve.org/) with **[aquasecurity/trivy](https://github.com/aquasecurity/trivy)**. The scan results can be reviewed and managed under 'Security > Vulnerability alerts > Code scanning'.Scans are triggered
1. with each main CI/CD pipeline run
2. Scheduled (weekly) ([ref](.github/workflows/2.scheduled.code-analysis.yml))
Please refer to [official GitHub documentation](https://docs.github.com/en/code-security/code-scanning/introduction-to-code-scanning/about-code-scanning) for more details.
## Automated Dependency Updates with Renovate
βΉοΈ Renovate (RenovateBot) is a software tool that automates the process of keeping software dependencies up-to-date by scanning code repositories, identifying outdated dependencies, and generating automated pull requests to update them.
Itβs Open Source and Community-Driven, supports a wide range of programming languages and package managers, and integrates with GitHub & Gitlab as well as other popular CI/CD systems.
### Dependency Dashboard
### PRs created by renovate bot
### Prerequisites: Enable & Configure Renovate
This template ships with a prepared [renovate.json](renovate.json).The recommended way to enable renovate is to use the [Renovate GitHub App](https://github.com/apps/renovate).
## Credits
- inspired by https://github.com/cortinico/kotlin-android-template
- PR & issue templates copied / adapted from https://github.com/nuxt/nuxtjava-library-template by thriving.dev is licensed under CC BY-NC-SA 4.0