Skip to content
Closed
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
2 changes: 2 additions & 0 deletions .github/workflows/release-1.x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ jobs:
JRELEASER_GPG_SECRET_KEY: ${{ secrets.JRELEASER_GPG_SECRET_KEY }}
JRELEASER_MAVENCENTRAL_USERNAME: ${{ secrets.JRELEASER_MAVEN_CENTRAL_TOKEN_USER }}
JRELEASER_MAVENCENTRAL_PASSWORD: ${{ secrets.JRELEASER_MAVEN_CENTRAL_TOKEN }}
with:
arguments: full-release --config-file jreleaser-1.x.yml
Comment on lines +102 to +103

- name: JReleaser release output
uses: actions/upload-artifact@v7
Expand Down
58 changes: 58 additions & 0 deletions jreleaser-1.x.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
project:
java:
groupId: "ai.timefold.solver"

signing:
active: ALWAYS
armored: true

release:
github:
commitAuthor:
name: "Timefold Release Bot"
email: "release@timefold.ai"
releaseName: "Timefold Solver {{projectVersion}}"
draft: true
overwrite: false
sign: true
milestone:
close: true
changelog:
formatted: ALWAYS
preset: "conventional-commits"
contentTemplate: ".github/workflows/release-changelog-template.md"
contributors:
format: '- {{contributorName}} ({{contributorUsernameAsLink}})'
hide:
uncategorized: true
categories:
- build
- ci
contributors:
- "Timefold Release Bot"

deploy:
maven:
mavenCentral:
timefold-solver:
active: ALWAYS
url: https://central.sonatype.com/api/v1/publisher
authorization: BASIC
# TODO Remove verifyPom tag, hack for https://github.com/jreleaser/jreleaser/issues/1397
verifyPom: false
maxRetries: 180 # the timeout for Maven state verification is now 30 minutes: 180 retries * 10-second delay
stagingRepositories:
- "target/staging-deploy"
artifactOverrides:
- groupId: ai.timefold.solver
artifactId: timefold-solver-spring-boot-starter
sourceJar: false
javadocJar: false
- groupId: ai.timefold.solver
artifactId: timefold-solver-ide-config
sourceJar: true
javadocJar: false
- groupId: ai.timefold.solver
artifactId: timefold-solver-webui
sourceJar: true
javadocJar: false
Loading