Skip to content

Commit

Permalink
feat: add JReleaser configuration
Browse files Browse the repository at this point in the history
bump version

Refs: #34
  • Loading branch information
cbmarcum committed Jan 1, 2023
1 parent 05d3f83 commit 42625ec
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
42 changes: 42 additions & 0 deletions jreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Generated with JReleaser 1.4.0 at 2023-01-01T11:11:51.477084-05:00
project:
name: skeletal
description: A project creation tool
longDescription: Skeletal is a tool that allows you to create a new project structure for any framework or library for which the tool has a template.
authors:
- Carl Marcum
license: Apache-2.0
links:
homepage: https://github.com/cbmarcum/skeletal
java:
groupId: net.codebuilders
version: 8
inceptionYear: 2021
stereotype: cli

release:
github:
owner: cbmarcum
overwrite: true
sign: false
# discussionCategoryName: 'Announcements'
changelog:
formatted: 'ALWAYS'
format: '- {{commitShortHash}} {{commitTitle}}'
preset: 'conventional-commits'
contributors:
format: '- {{contributorName}}{{#contributorUsernameAsLink}} ({{.}}){{/contributorUsernameAsLink}}'
# skipMergeCommits: true
# using this instead
hide:
categories:
- 'merge'

signing:
active: never # always
armored: true

distributions:
skeletal:
artifacts:
- path: skeletal-app/build/distributions/{{distributionName}}-{{projectVersion}}.zip
2 changes: 1 addition & 1 deletion skeletal-app/app.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ archivesBaseName = 'skeletal-app'
applicationName = "skeletal"
mainClassName = "uk.co.cacoethes.lazybones.LazybonesMain"
// make sure to update the asciidoc guide headers also
version = "0.13.2"
version = "0.13.3"

// These settings mimic the old client VM behavior. Should result in faster startup.
applicationDefaultJvmArgs = ["-XX:+TieredCompilation", "-XX:TieredStopAtLevel=1", "-XX:CICompilerCount=3"]
Expand Down

0 comments on commit 42625ec

Please sign in to comment.