1
0
Fork 0
mirror of https://github.com/ethauvin/version-processor.git synced 2025-04-24 15:37:12 -07:00
A simple apt example built with Kobalt
Find a file
2015-11-14 11:40:59 -08:00
.idea Change package name. 2015-11-14 08:41:40 -08:00
example Change package name. 2015-11-14 08:41:40 -08:00
kobalt/wrapper kobalt version. 2015-11-14 07:38:52 -08:00
processor Change package name. 2015-11-14 08:41:40 -08:00
.gitignore .gitignore 2015-11-14 09:59:00 -08:00
apt-example.iml Initial commit 2015-11-09 20:15:06 -08:00
Build.kt Build minor fixes. 2015-11-14 11:40:59 -08:00
kobaltw 0.246. 2015-11-10 14:43:38 -08:00
README.md README. 2015-11-14 08:46:37 -08:00
run 0.246. 2015-11-10 14:43:38 -08:00

A simple annotation processing example

This project demonstrates a simple annotation processor that is built with Kobalt. The annotation processor allows you to generate a Version class containing a version number that is either read from a Properties file or directly defined in the annotation.

There are two modules in this project:

  • The processor (processor/)
  • The example using the processor (example/)

The processor project defines an annotation @Version that lets you specify a version number in two ways:

  • Either provide a value for the version.
  • Or you provide a fileName pointing to a Properties file. This file contains the version number either with the default key version or with your own key, which you can specify with the propertyName attribute.

For example:

@Version(fileName = "example/src/main/properties/version.properties",
    propertyName = "example.version")
public class A {
// ...

And the content of the version.properties file:

example.version=1.4

When the annotation processor is run, it generates a source file GeneratedVersion.java with a static field containing that version number.

The example project has a single class Example which is annotated with @Version and which then displays the value of the version from the GeneratedVersion generated class.

To build and run the example:


./kobaltw run