Semantic Version Annotation Processor https://github.com/ethauvin/semver
Find a file
2017-04-22 10:01:07 -07:00
.idea Kobalt 1.0.71 update. 2017-04-19 10:21:47 -07:00
example Included generated source file. 2017-04-22 09:10:21 -07:00
gradle/wrapper Updated for Kobalt 1.0.x 2017-03-24 15:32:40 -07:00
kobalt Updated build scripts for testing. 2017-04-22 09:09:12 -07:00
src Fixed VersionInfo initialization. 2017-04-22 10:01:07 -07:00
.gitignore Added support for mustache instead of Velocity. 2017-04-14 22:27:07 -07:00
.travis.yml Added chmod to .travis.yml 2016-01-25 13:43:26 -08:00
appveyor.yml Version 0.9.2-beta 2016-01-26 08:44:49 -08:00
build.gradle Updated build scripts for testing. 2017-04-22 09:09:12 -07:00
github-pandoc.css Added Github css style for pandoc. 2016-06-30 12:50:37 -07:00
gradlew Updated for Kobalt 1.0.x 2017-03-24 15:32:40 -07:00
gradlew.bat Updated for Kobalt 1.0.x 2017-03-24 15:32:40 -07:00
kobaltw Updated to kobalt 0.867 2016-07-22 06:48:36 -07:00
kobaltw.bat Updated to kobalt 0.867 2016-07-22 06:48:36 -07:00
LICENSE.txt Updated copyright. 2017-04-16 14:26:01 -07:00
README.html Kobalt 1.0.71 update. 2017-04-19 10:21:47 -07:00
README.md Plugins update. 2017-04-22 09:09:48 -07:00
semver.iml Kobalt 1.0.71 update. 2017-04-19 10:21:47 -07:00
settings.gradle Initial commit. 2016-01-18 13:22:10 -08:00
version.properties Kobalt 1.0.71 update. 2017-04-19 10:21:47 -07:00

Semantic Version Annotation Processor

License (3-Clause BSD) Dependency Status Build Status Build status Maven Central Download

An annotation processor that automatically generates a GeneratedVersion class based on a Mustache template and containing the semantic version (major, minor, patch, etc.) that is read from a Properties file or defined in the annotation.

This processor was inspired by Cédric Beust's version-processor.

Examples

  • Using annotation elements:
import net.thauvin.erik.semver.Version;

@Version(major = 1, minor = 0, patch = 0, preRelease = "beta")
public class A {
// ...
import net.thauvin.erik.semver.Version;

@Version(properties = "version.properties")
public class A {
// ...
# version.properties
version.major=1
version.minor=0
version.patch=0
version.prerelease=beta

Template

Upon running the annotation processor, a source file GeneratedVersion.java is automatically generated with static methods to access the semantic version data. The source is based on a fully customizable Mustache template.

To use your own template, simply create a version.mustache file. The processor will automatically look for it.

To specify your own template name, use:

@Version(template = "myversion.mustache")
public class A {
// ...

Default Template

The default template implements the following static fields:

Field Description Example
project The project name, if any. MyProject
buildDate The build date. java.util.Date
version The full version string. 1.0.0-alpha+001
major The major version. 1
minor The minor version. 0
patch The patch version. 0
preRelease The pre-release version, if any. alpha
buildMeta The build metadata, if any. 001

And the following methods/functions:

Method Description Example
preReleaseWithPrefix() Returns the pre-release with a prefix, - by default. -alpha
buildMetaWithPrefix() Returns the build metadata with a prefix, + by default. +001

Custom Template

A very simple custom template might look something like:

/* version.mustache */
package {{packageName}}

import java.util.Date;

public final class {{className}} {
    public final static String PROJECT = "{{project}}";
    public final static Date DATE = new Date({{epoch}}L);
    public final static int MAJOR = {{major}};
    public final static int MINOR = {{minor}};
    public final static int PATCH = {{patch}};
    public final static String PRERELEASE = "{{preRelease}}";
    public final static String BUILDMETA = "{{buildMeta}}";
}

The mustache variables automatically filled in by the processor are:

Variable Description Type
{{packageName}} The package name. String
{{className}} The class name. String
{{project}} The project name. String
{{epoch}} The build epoch/unix time. long
{{major}} The major version. int
{{minor}} The minor version. int
{{patch}} The patch version. int
{{preRelease}} The pre/release version. String
{{buildMeta}} The build metadata version. String

Please also look at this example using java.time

Elements & Properties

The following annotation elements and properties are available:

Element Property Description Default
project version.project The project name.
major version.major The major version number. 1
minor version.major The minor version number. 0
patch version.patch The patch version number. 0
preRelease version.prerelease The pre-release version.
buildMeta version.buildmeta The build metadata version.
className The name of the generated class. GeneratedVersion
properties The properties file.
template The template file. version.mustache
type Either java or kt for Kotlin. java

In order to easily incorporate with existing projects, the property keys may be assigned custom values:

@Version(
  properties = "example.properties",
  majorKey = "example.major",
  minorKey = "example.minor",
  patchKey = "example.patch",
  preReleaseKey = "example.prerelease",
  buildMetaKey = "example.buildmeta",
  projectKey = "example.project"
)
public class Example {
// ...
# example.properties
example.project=Example
example.major=1
example.minor=0
example.patch=0
# ...

Usage with Maven, Grail, Kobalt and Kotlin

Maven

To install and run from Maven, configure an artifact as follows:

<dependency>
    <groupId>net.thauvin.erik</groupId>
    <artifactId>semver</artifactId>
    <version>1.0</version>
</dependency>

Gradle

Class Generation

To install and run from Gradle, add the following to the build.gradle file:

dependencies {
    compileOnly 'net.thauvin.erik:semver:1.0'
}

The GeneratedVersion class will be automatically created in the build/generated directory upon compiling.

Class & Source Generation

In order to also incorporate the generated source code into the source tree, use the EWERK Annotation Processor Plugin. Start by adding the following to the very top of the build.gradle file:

plugins {
    id "com.ewerk.gradle.plugins.annotation-processor" version "1.0.4"
}

Then add the following to the build.gradle file:

dependencies {
    compileOnly 'net.thauvin.erik:semver:1.0'
}

annotationProcessor {
    library 'net.thauvin.erik:semver:1.0'
    processor 'net.thauvin.erik.semver.VersionProcessor'
    // sourcesDir 'src/generated/java'
}

compileJava {
    // Disable the classpath processor
    options.compilerArgs << '-proc:none'
}

The plugin implements a separate compile task that only runs the annotation processor and is executed during the build phase.

Please look at the build.gradle file in the example module directory for a sample.

Kobalt

To install and run from Kobalt, add the following to the Build.kt file:

dependencies {
    apt("net.thauvin.erik:semver:1.0")
    compileOnly("net.thauvin.erik:semver:1.0")
}

Please look at the Build.kt file in the example module directory for a sample.

Kotlin

The annotation processor also supports Kotlin.

To generate a Kotlin version file, simply specify the type as follows:

import net.thauvin.erik.semver.Version

@Version(properties = "version.properties", type="kt")
open class Main {
// ...

The Kotlin default template implements the same static fields and functions as the Java template.

Please look at the Example for Kotlin project for samples on using Gradle and Kobalt.

Auto-Increment

Incrementing the version is best left to your favorite build system.

For a solution using Gradle, please have a look at the build.gradle file in the example module directory. To run the example with patch version auto-incrementing, issue the following command:

gradle release run