Initial commit.

This commit is contained in:
Erik C. Thauvin 2016-10-06 12:31:30 -07:00
commit 6d523414de
15 changed files with 566 additions and 0 deletions

28
build.gradle Normal file
View file

@ -0,0 +1,28 @@
plugins {
id "com.ewerk.gradle.plugins.annotation-processor" version "1.0.2"
}
apply plugin: 'java'
apply plugin: 'application'
mainClassName = 'com.example.Main'
// In this section you declare where to find the dependencies of your project
repositories {
// Use 'jcenter' for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}
// In this section you declare the dependencies for your production and test code
dependencies {
compileOnly 'net.thauvin.erik:semver:0.9.6-beta'
}
compileJava {
options.compilerArgs << '-proc:none'
}
annotationProcessor {
library 'net.thauvin.erik:semver:0.9.6-beta'
processor 'net.thauvin.erik.semver.VersionProcessor'
}