Skip to content

Commit 75e0562

Browse files
committed
Rename artifact & publish 3.0.0-M1
1 parent c5e2184 commit 75e0562

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

build.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
name := "jacoco4sbt"
2-
organization := "de.johoop"
1+
name := "sbt-jacoco"
2+
organization := "org.scala-sbt"
33

4-
version := "3.0.0-SNAPSHOT"
4+
version := "3.0.0-M1"
55

66
sbtPlugin := true
77
crossSbtVersions := Seq("0.13.16", "1.0.1")

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This is an [sbt](http://scala-sbt.org/) plugin for code coverage analysis via [J
88
Install the plugin by adding the following to `project/plugins.sbt`:
99

1010
```scala
11-
addSbtPlugin("de.johoop" % "jacoco4sbt" % "3.0.0-M?")
11+
addSbtPlugin("org.scala-sbt" % "sbt-jacoco" % "3.0.0-M1")
1212
```
1313

1414
And then execute the plugin with `sbt jacoco:jacoco`.

src/sbt-test/jacoco4sbt/forked/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
throw new RuntimeException("""|The system property 'plugin.version' is not defined.
55
|Specify this property using the parameter -Dplugin.version=<version>""".stripMargin)
66

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

src/sbt-test/jacoco4sbt/integration-test-no-merge/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
throw new RuntimeException("""|The system property 'plugin.version' is not defined.
55
|Specify this property using the parameter -Dplugin.version=<version>""".stripMargin)
66

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

src/sbt-test/jacoco4sbt/integration-test/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
throw new RuntimeException("""|The system property 'plugin.version' is not defined.
55
|Specify this property using the parameter -Dplugin.version=<version>""".stripMargin)
66

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

src/sbt-test/jacoco4sbt/multi-build/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
throw new RuntimeException("""|The system property 'plugin.version' is not defined.
55
|Specify this property using the parameter -Dplugin.version=<version>""".stripMargin)
66

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

src/sbt-test/jacoco4sbt/report-settings/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
throw new RuntimeException("""|The system property 'plugin.version' is not defined.
55
|Specify this property using the parameter -Dplugin.version=<version>""".stripMargin)
66

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

src/sbt-test/jacoco4sbt/simple/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
throw new RuntimeException("""|The system property 'plugin.version' is not defined.
55
|Specify this property using the parameter -Dplugin.version=<version>""".stripMargin)
66

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

src/sbt-test/jacoco4sbt/source-settings/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
throw new RuntimeException("""|The system property 'plugin.version' is not defined.
55
|Specify this property using the parameter -Dplugin.version=<version>""".stripMargin)
66

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

0 commit comments

Comments
 (0)