Skip to content

Commit

Permalink
Rename artifact & publish 3.0.0-M1
Browse files Browse the repository at this point in the history
  • Loading branch information
stringbean committed Sep 7, 2017
1 parent c5e2184 commit 75e0562
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name := "jacoco4sbt"
organization := "de.johoop"
name := "sbt-jacoco"
organization := "org.scala-sbt"

version := "3.0.0-SNAPSHOT"
version := "3.0.0-M1"

sbtPlugin := true
crossSbtVersions := Seq("0.13.16", "1.0.1")
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This is an [sbt](http://scala-sbt.org/) plugin for code coverage analysis via [J
Install the plugin by adding the following to `project/plugins.sbt`:

```scala
addSbtPlugin("de.johoop" % "jacoco4sbt" % "3.0.0-M?")
addSbtPlugin("org.scala-sbt" % "sbt-jacoco" % "3.0.0-M1")
```

And then execute the plugin with `sbt jacoco:jacoco`.
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/jacoco4sbt/forked/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
throw new RuntimeException("""|The system property 'plugin.version' is not defined.
|Specify this property using the parameter -Dplugin.version=<version>""".stripMargin)

else addSbtPlugin("de.johoop" % "jacoco4sbt" % pluginVersion)
else addSbtPlugin("org.scala-sbt" % "sbt-jacoco" % pluginVersion)
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
throw new RuntimeException("""|The system property 'plugin.version' is not defined.
|Specify this property using the parameter -Dplugin.version=<version>""".stripMargin)

else addSbtPlugin("de.johoop" % "jacoco4sbt" % pluginVersion)
else addSbtPlugin("org.scala-sbt" % "sbt-jacoco" % pluginVersion)
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
throw new RuntimeException("""|The system property 'plugin.version' is not defined.
|Specify this property using the parameter -Dplugin.version=<version>""".stripMargin)

else addSbtPlugin("de.johoop" % "jacoco4sbt" % pluginVersion)
else addSbtPlugin("org.scala-sbt" % "sbt-jacoco" % pluginVersion)
}
2 changes: 1 addition & 1 deletion src/sbt-test/jacoco4sbt/multi-build/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
throw new RuntimeException("""|The system property 'plugin.version' is not defined.
|Specify this property using the parameter -Dplugin.version=<version>""".stripMargin)

else addSbtPlugin("de.johoop" % "jacoco4sbt" % pluginVersion)
else addSbtPlugin("org.scala-sbt" % "sbt-jacoco" % pluginVersion)
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
throw new RuntimeException("""|The system property 'plugin.version' is not defined.
|Specify this property using the parameter -Dplugin.version=<version>""".stripMargin)

else addSbtPlugin("de.johoop" % "jacoco4sbt" % pluginVersion)
else addSbtPlugin("org.scala-sbt" % "sbt-jacoco" % pluginVersion)
}
2 changes: 1 addition & 1 deletion src/sbt-test/jacoco4sbt/simple/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
throw new RuntimeException("""|The system property 'plugin.version' is not defined.
|Specify this property using the parameter -Dplugin.version=<version>""".stripMargin)

else addSbtPlugin("de.johoop" % "jacoco4sbt" % pluginVersion)
else addSbtPlugin("org.scala-sbt" % "sbt-jacoco" % pluginVersion)
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
throw new RuntimeException("""|The system property 'plugin.version' is not defined.
|Specify this property using the parameter -Dplugin.version=<version>""".stripMargin)

else addSbtPlugin("de.johoop" % "jacoco4sbt" % pluginVersion)
else addSbtPlugin("org.scala-sbt" % "sbt-jacoco" % pluginVersion)
}

0 comments on commit 75e0562

Please sign in to comment.