Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libquassel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Janne Mareike Koschinski
libquassel
Commits
8f97f22e
Verified
Commit
8f97f22e
authored
3 years ago
by
Janne Mareike Koschinski
Browse files
Options
Downloads
Patches
Plain Diff
build: determine version from git tags
parent
207255d6
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
build.gradle.kts
+1
-1
1 addition, 1 deletion
build.gradle.kts
gradle/convention/src/main/kotlin/justjanne.version.gradle.kts
+23
-0
23 additions, 0 deletions
...e/convention/src/main/kotlin/justjanne.version.gradle.kts
with
24 additions
and
1 deletion
build.gradle.kts
+
1
−
1
View file @
8f97f22e
...
...
@@ -8,6 +8,7 @@
*/
plugins
{
id
(
"justjanne.version"
)
id
(
"justjanne.dokka"
)
id
(
"justjanne.publish-maven-central"
)
idea
...
...
@@ -15,4 +16,3 @@ plugins {
}
group
=
"de.justjanne.libquassel"
version
=
"0.10.1"
This diff is collapsed.
Click to expand it.
gradle/convention/src/main/kotlin/justjanne.version.gradle.kts
0 → 100644
+
23
−
0
View file @
8f97f22e
import
org.gradle.api.Project
/*
* libquassel
* Copyright (c) 2022 Janne Mareike Koschinski
*
* This Source Code Form is subject to the terms of the Mozilla Public License,
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
* obtain one at https://mozilla.org/MPL/2.0/.
*/
version
=
cmd
(
"git"
,
"describe"
,
"--always"
,
"--tags"
,
"HEAD"
)
?:
"1.0.0"
fun
Project
.
cmd
(
vararg
command
:
String
)
=
try
{
val
stdOut
=
java
.
io
.
ByteArrayOutputStream
()
exec
{
commandLine
(*
command
)
standardOutput
=
stdOut
}
stdOut
.
toString
(
Charsets
.
UTF_8
.
name
()).
trim
()
}
catch
(
e
:
Throwable
)
{
null
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment