aboutsummaryrefslogtreecommitdiff
path: root/stage2/plugins/SnapshotVersion.scala
diff options
context:
space:
mode:
authorJan Christopher Vogt <oss.nsp@cvogt.org>2017-03-19 22:15:02 -0400
committerGitHub <noreply@github.com>2017-03-19 22:15:02 -0400
commitfebf7d987f643f3e071510812373778608a480ac (patch)
tree3f2321914d91df63717e3bd6df08bb11574bd7b7 /stage2/plugins/SnapshotVersion.scala
parent092616b3e24deb522ae58d66b24a503efb0a486b (diff)
parent5388bb116834196e1b0a9bd9f2622f36e842b3be (diff)
downloadcbt-febf7d987f643f3e071510812373778608a480ac.tar.gz
cbt-febf7d987f643f3e071510812373778608a480ac.tar.bz2
cbt-febf7d987f643f3e071510812373778608a480ac.zip
Merge pull request #447 from cvogt/chris
Get rid of the hacky "essential" plugins separation
Diffstat (limited to 'stage2/plugins/SnapshotVersion.scala')
-rw-r--r--stage2/plugins/SnapshotVersion.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/stage2/plugins/SnapshotVersion.scala b/stage2/plugins/SnapshotVersion.scala
new file mode 100644
index 0000000..1f7eb23
--- /dev/null
+++ b/stage2/plugins/SnapshotVersion.scala
@@ -0,0 +1,7 @@
+package cbt
+
+trait SnapshotVersion extends ArtifactInfo with DynamicOverrides{
+ def snapshot = newBuild[SnapshotVersion]{"""
+ override def version = super.version ++ "-SNAPSHOT"
+ """}
+}