diff --git a/README.md b/README.md index ea9c04b..eedf3c4 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,8 @@ sbt-groovy ========== -an sbt plugin for groovy +An sbt plugin for groovy forked from +[fupelaqu/sbt-groovy](https://github.com/fupelaqu/sbt-groovy) ## Requirements @@ -13,10 +14,7 @@ an sbt plugin for groovy Add plugin to *project/plugins.sbt*: ```scala - -resolvers += "Sonatype Repository" at "https://oss.sonatype.org/content/groups/public" - -addSbtPlugin("org.softnetwork.sbt.plugins" % "sbt-groovy" % "0.1.3") +addSbtPlugin("ph.samson" % "sbt-groovy" % "0.2.0") ``` For *.sbt* build definitions, inject the plugin settings in *build.sbt*: @@ -30,12 +28,12 @@ seq(testGroovy.settings :_*) For *.scala* build definitions, inject the plugin settings in *Build.scala*: ```scala -Project(..., settings = Project.defaultSettings ++ org.softnetwork.sbt.plugins.GroovyPlugin.groovy.settings ++ org.softnetwork.sbt.plugins.GroovyPlugin.testGroovy.settings) +Project(..., settings = Project.defaultSettings ++ ph.samson.sbt.groovy.GroovyPlugin.groovy.settings ++ ph.samson.sbt.groovy.GroovyPlugin.testGroovy.settings) ``` ## Configuration -Plugin keys are located in `org.softnetwork.sbt.plugins.Keys` +Plugin keys are located in `ph.samson.sbt.groovy.Keys` ### Groovy sources diff --git a/build.sbt b/build.sbt index 3e62c1c..e2201e9 100644 --- a/build.sbt +++ b/build.sbt @@ -2,9 +2,9 @@ sbtPlugin := true name := "sbt-groovy" -organization := "org.softnetwork.sbt.plugins" +organization := "ph.samson" -version := "0.1.3" +version := "0.2.0-SNAPSHOT" scalaVersion := "2.10.4" @@ -23,7 +23,7 @@ publishArtifact in Test := false pomIncludeRepository := { _ => false } pomExtra := ( - https://github.com/fupelaqu/sbt-groovy + https://github.com/esamson/sbt-groovy MIT @@ -32,10 +32,15 @@ pomExtra := ( - git@github.com:fupelaqu/sbt-groovy.git - scm:git:git@github.com:fupelaqu/sbt-groovy.git + git@github.com:esamson/sbt-groovy.git + scm:git:git@github.com:esamson/sbt-groovy.git + + esamson + Edward Samson + https://edward.samson.ph + smanciot Stéphane Manciot diff --git a/project/build.properties b/project/build.properties index f1fe531..c091b86 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1,2 +1 @@ -sbtVersion=0.13.0 - +sbt.version=0.13.16 diff --git a/project/plugins.sbt b/project/plugins.sbt index 74de172..e69de29 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1 +0,0 @@ -addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.3.0") diff --git a/src/main/scala/GroovyC.scala b/src/main/scala/GroovyC.scala index ef479a5..1db3fe4 100644 --- a/src/main/scala/GroovyC.scala +++ b/src/main/scala/GroovyC.scala @@ -1,4 +1,4 @@ -package org.softnetwork.sbt.plugins +package ph.samson.sbt.groovy import sbt._ import java.io.File @@ -53,4 +53,4 @@ class GroovyC(val classpath : Seq[File], val sourceDirectory : File, val stubDir } } -} \ No newline at end of file +} diff --git a/src/main/scala/GroovyPlugin.scala b/src/main/scala/GroovyPlugin.scala index 52e679e..2a08a3e 100644 --- a/src/main/scala/GroovyPlugin.scala +++ b/src/main/scala/GroovyPlugin.scala @@ -1,4 +1,4 @@ -package org.softnetwork.sbt.plugins +package ph.samson.sbt.groovy import sbt._ import Keys._ diff --git a/src/main/scala/Keys.scala b/src/main/scala/Keys.scala index e6256d3..f44b286 100644 --- a/src/main/scala/Keys.scala +++ b/src/main/scala/Keys.scala @@ -1,4 +1,4 @@ -package org.softnetwork.sbt.plugins +package ph.samson.sbt.groovy import sbt._ import sbt.Keys._ @@ -31,4 +31,4 @@ trait TestKeys extends Keys { trait IntegrationTestKeys extends TestKeys { override lazy val Config = (config("it-groovy") extend IntegrationTest).hide -} \ No newline at end of file +}