Skip to content

Commit 4b6565f

Browse files
authored
Merge pull request #24 from SethTisue/rename-plugin
change plugin name to sbt-scala-module
2 parents adb2fcb + bb5afc7 commit 4b6565f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Diff for: README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ the Sonatype web UI will then send the artifacts to Maven Central.
1313
Add the plugin to the `project/plugins.sbt` file:
1414

1515
```
16-
addSbtPlugin("org.scala-lang.modules" % "scala-module-plugin" % "1.0.8")
16+
addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "1.0.9")
1717
```
1818

1919
Then, in your `build.sbt` add:
@@ -44,7 +44,7 @@ scalaVersionsByJvm in ThisBuild := {
4444
9 -> List(v212, v213, v211).map(_ -> false))
4545
}
4646
47-
mimaPreviousVersion := Some("1.0.3") // enables MiMa (`None` by default, which disables it)
47+
mimaPreviousVersion := Some("1.0.9") // enables MiMa (`None` by default, which disables it)
4848
4949
OsgiKeys.exportPackage := Seq(s"<exported package>;version=${version.value}")
5050
@@ -76,16 +76,16 @@ Tag the release and add release notes to https://github.com/scala/sbt-scala-modu
7676
- Make sure the current `HEAD` is a tagged revision. In sbt, `version` (set by sbt-git) should be according to a tag.
7777

7878
> version
79-
[info] 1.0.6
79+
[info] 1.0.9
8080

8181
- Run `publish` in sbt. If you don't have a `~/.bintray/.credentials` file, the sbt-bintray plugin will ask you for your
8282
username and API key. The API key can be obtained under "Edit Profile" (https://bintray.com/profile/edit). The sbt-bintray
8383
plugin saves credentials to `~/.bintray/.credentials` for future use.
84-
- If you haven't done so before, add your package for this plugin (https://bintray.com/YOUR_USERNAME/sbt-plugins/scala-module-plugin)
84+
- If you haven't done so before, add your package for this plugin (https://bintray.com/YOUR_USERNAME/sbt-plugins/sbt-scala-module)
8585
to the community sbt repository (https://bintray.com/sbt/sbt-plugin-releases). Otherwise you're done, the release is available.
86-
- Check if you added your package by searching for "scala-module-plugin" in the repository.
86+
- Check if you added your package by searching for "sbt-scala-module" in the repository.
8787
- If you cannot find your package, click "Include My Package"
88-
- Search for your plugin (`scala-module-plugin`)
88+
- Search for your plugin (`sbt-scala-module`)
8989
- Click "Send" to send the request
9090

9191
The above instructions are a short version of http://www.scala-sbt.org/0.13/docs/Bintray-For-Plugins.html.

Diff for: build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ git.baseVersion := "1.0.0"
22

33
versionWithGit
44

5-
name := "scala-module-plugin"
5+
name := "sbt-scala-module"
66

77
organization := "org.scala-lang.modules"
88

0 commit comments

Comments
 (0)