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

change version to projectVersion for use during release #368

Merged
merged 2 commits into from
Oct 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
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ plugins {
id 'org.asciidoctor.jvm.convert' version '3.3.2'
}

version project.projectVersion
group 'org.grails.plugins'

apply plugin: 'org.grails.grails-plugin'
Expand Down Expand Up @@ -78,7 +79,7 @@ asciidoctor {
'compat-mode': 'true',
'toc': 'left',
'icons': 'font',
'version': project.version,
'version': project.projectVersion,
'sourcedir': 'src/main/groovy'
baseDirFollowsSourceDir()
outputDir = "${buildDir}/asciidoc"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Mon, 08 Apr 2024 19:48:24 +0000
version=5.1.0-SNAPSHOT
projectVersion=5.1.0-SNAPSHOT
grailsVersion=5.3.5
grailsGradlePluginVersion=5.3.1
grailsScaffoldingVersion=2.1.0
Expand Down
Loading