aboutsummaryrefslogtreecommitdiff
path: root/stage2/plugins/GithubPom.scala
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2016-06-19 16:15:21 -0400
committerChristopher Vogt <oss.nsp@cvogt.org>2016-06-19 16:15:21 -0400
commit0f5300349539bfa9642dca7ac7800614a57f316f (patch)
treeb4e281ccc3f0cc190f19bb8f256f3b228fb2f02d /stage2/plugins/GithubPom.scala
parent1531ea1c1383368f8a8048a079397f08e25ecd11 (diff)
downloadcbt-0f5300349539bfa9642dca7ac7800614a57f316f.tar.gz
cbt-0f5300349539bfa9642dca7ac7800614a57f316f.tar.bz2
cbt-0f5300349539bfa9642dca7ac7800614a57f316f.zip
built-in plugin structure improvements
- move plugins into cbt namespace - enable scalac warnings in builds by default - merged language flags into AdvancedScala trait
Diffstat (limited to 'stage2/plugins/GithubPom.scala')
-rw-r--r--stage2/plugins/GithubPom.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/stage2/plugins/GithubPom.scala b/stage2/plugins/GithubPom.scala
new file mode 100644
index 0000000..8b11385
--- /dev/null
+++ b/stage2/plugins/GithubPom.scala
@@ -0,0 +1,11 @@
+package cbt
+import java.net.URL
+trait GithubPom extends Publish{
+ def user: String
+ def githubProject = name
+ def githubUser = user
+ final def githubUserProject = githubUser ++ "/" ++ githubProject
+ override def url = new URL(s"http://github.com/$githubUserProject")
+ override def scmUrl = s"git@github.com:$githubUserProject.git"
+ override def scmConnection = s"scm:git:$scmUrl"
+}