Skip to content

Commit 4292679

Browse files
authored
Replace org name to mitigate chance of clash between our fork and maven version (#3)
1 parent 528e469 commit 4292679

File tree

29 files changed

+29
-29
lines changed

29 files changed

+29
-29
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Installation
2222
**Step 1: create `project/protoc.sbt` with:**
2323

2424
```scala
25-
addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.7")
25+
addSbtPlugin("com.whisk" % "sbt-protoc" % "1.0.7")
2626

2727
libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.10.10"
2828
```

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pluginCrossBuild / sbtVersion := "1.2.8"
2929

3030
inThisBuild(
3131
List(
32-
organization := "com.thesamet",
32+
organization := "com.whisk",
3333
homepage := Some(url("https://github.com/thesamet/sbt-protoc")),
3434
licenses := List(
3535
"Apache-2.0" ->
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
addSbtPlugin("com.thesamet" % "sbt-protoc" % "0.99.27")
1+
addSbtPlugin("com.whisk" % "sbt-protoc" % "0.99.27")
22

33
libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.9.4"
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("com.thesamet" % "sbt-protoc" % "0.99.25")
1+
addSbtPlugin("com.whisk" % "sbt-protoc" % "0.99.25")
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("com.thesamet" % "sbt-protoc" % "0.99.25")
1+
addSbtPlugin("com.whisk" % "sbt-protoc" % "0.99.25")
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
addSbtPlugin("com.thesamet" % "sbt-protoc" % "0.99.30")
1+
addSbtPlugin("com.whisk" % "sbt-protoc" % "0.99.30")
22

33
libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.10.2"

examples/scalajs-multiproject/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.6")
1+
addSbtPlugin("com.whisk" % "sbt-protoc" % "1.0.6")
22

33
libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.11.10"
44

examples/scalapb-crossproject/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.15")
55

66
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.9.0")
77

8-
addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.6")
8+
addSbtPlugin("com.whisk" % "sbt-protoc" % "1.0.6")
99

1010
libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.11.13"

examples/scalapb-dotty/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.0-RC4")
1+
addSbtPlugin("com.whisk" % "sbt-protoc" % "1.0.0-RC4")
22

33
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.4.6")
44

Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
addSbtPlugin("com.thesamet" % "sbt-protoc" % "0.99.15")
1+
addSbtPlugin("com.whisk" % "sbt-protoc" % "0.99.15")
22

33
libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.9.0"

examples/scalapb/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
addSbtPlugin("com.thesamet" % "sbt-protoc" % "0.99.25")
1+
addSbtPlugin("com.whisk" % "sbt-protoc" % "0.99.25")
22

33
libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.9.0"

src/sbt-test/compat/scalapb-0.10.3/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""|The system property 'plugin.version' is not defined.
66
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin
77
)
8-
else addSbtPlugin("com.thesamet" % "sbt-protoc" % pluginVersion)
8+
else addSbtPlugin("com.whisk" % "sbt-protoc" % pluginVersion)
99
}
1010

1111
libraryDependencies ++= Seq(

src/sbt-test/compat/scalapb-0.10.6/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""|The system property 'plugin.version' is not defined.
66
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin
77
)
8-
else addSbtPlugin("com.thesamet" % "sbt-protoc" % pluginVersion)
8+
else addSbtPlugin("com.whisk" % "sbt-protoc" % pluginVersion)
99
}
1010

1111
libraryDependencies ++= Seq(

src/sbt-test/compat/scalapb-0.9/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""|The system property 'plugin.version' is not defined.
66
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin
77
)
8-
else addSbtPlugin("com.thesamet" % "sbt-protoc" % pluginVersion)
8+
else addSbtPlugin("com.whisk" % "sbt-protoc" % pluginVersion)
99
}
1010

1111
libraryDependencies ++= Seq(

src/sbt-test/delete/clear-dir/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"""|The system property 'plugin.version' is not defined.
66
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin
77
)
8-
else addSbtPlugin("com.thesamet" % "sbt-protoc" % pluginVersion)
8+
else addSbtPlugin("com.whisk" % "sbt-protoc" % pluginVersion)
99
}

src/sbt-test/delete/single-file/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"""|The system property 'plugin.version' is not defined.
66
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin
77
)
8-
else addSbtPlugin("com.thesamet" % "sbt-protoc" % pluginVersion)
8+
else addSbtPlugin("com.whisk" % "sbt-protoc" % pluginVersion)
99
}

src/sbt-test/integration/common-protos/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""|The system property 'plugin.version' is not defined.
66
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin
77
)
8-
else addSbtPlugin("com.thesamet" % "sbt-protoc" % pluginVersion)
8+
else addSbtPlugin("com.whisk" % "sbt-protoc" % pluginVersion)
99
}
1010

1111
libraryDependencies ++= Seq(

src/sbt-test/settings/caching/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""|The system property 'plugin.version' is not defined.
66
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin
77
)
8-
else addSbtPlugin("com.thesamet" % "sbt-protoc" % pluginVersion)
8+
else addSbtPlugin("com.whisk" % "sbt-protoc" % pluginVersion)
99
}
1010

1111
libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.10.9"

src/sbt-test/settings/cross-platform/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""|The system property 'plugin.version' is not defined.
66
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin
77
)
8-
else addSbtPlugin("com.thesamet" % "sbt-protoc" % pluginVersion)
8+
else addSbtPlugin("com.whisk" % "sbt-protoc" % pluginVersion)
99
}
1010

1111
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "0.6.0")

src/sbt-test/settings/depends-on/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"""|The system property 'plugin.version' is not defined.
66
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin
77
)
8-
else addSbtPlugin("com.thesamet" % "sbt-protoc" % pluginVersion)
8+
else addSbtPlugin("com.whisk" % "sbt-protoc" % pluginVersion)
99
}

src/sbt-test/settings/disable/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"""|The system property 'plugin.version' is not defined.
66
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin
77
)
8-
else addSbtPlugin("com.thesamet" % "sbt-protoc" % pluginVersion)
8+
else addSbtPlugin("com.whisk" % "sbt-protoc" % pluginVersion)
99
}

src/sbt-test/settings/include-protos-in-jar/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"""|The system property 'plugin.version' is not defined.
66
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin
77
)
8-
else addSbtPlugin("com.thesamet" % "sbt-protoc" % pluginVersion)
8+
else addSbtPlugin("com.whisk" % "sbt-protoc" % pluginVersion)
99
}

src/sbt-test/settings/itconfig/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"""|The system property 'plugin.version' is not defined.
66
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin
77
)
8-
else addSbtPlugin("com.thesamet" % "sbt-protoc" % pluginVersion)
8+
else addSbtPlugin("com.whisk" % "sbt-protoc" % pluginVersion)
99
}

src/sbt-test/settings/lazy-protoc-resolution/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"""|The system property 'plugin.version' is not defined.
66
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin
77
)
8-
else addSbtPlugin("com.thesamet" % "sbt-protoc" % pluginVersion)
8+
else addSbtPlugin("com.whisk" % "sbt-protoc" % pluginVersion)
99
}

src/sbt-test/settings/native/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"""|The system property 'plugin.version' is not defined.
66
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin
77
)
8-
else addSbtPlugin("com.thesamet" % "sbt-protoc" % pluginVersion)
8+
else addSbtPlugin("com.whisk" % "sbt-protoc" % pluginVersion)
99
}

src/sbt-test/settings/non-jvm/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"""|The system property 'plugin.version' is not defined.
66
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin
77
)
8-
else addSbtPlugin("com.thesamet" % "sbt-protoc" % pluginVersion)
8+
else addSbtPlugin("com.whisk" % "sbt-protoc" % pluginVersion)
99
}

src/sbt-test/settings/protobuf-src/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"""|The system property 'plugin.version' is not defined.
66
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin
77
)
8-
else addSbtPlugin("com.thesamet" % "sbt-protoc" % pluginVersion)
8+
else addSbtPlugin("com.whisk" % "sbt-protoc" % pluginVersion)
99
}

src/sbt-test/settings/sandboxed/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""|The system property 'plugin.version' is not defined.
66
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin
77
)
8-
else addSbtPlugin("com.thesamet" % "sbt-protoc" % pluginVersion)
8+
else addSbtPlugin("com.whisk" % "sbt-protoc" % pluginVersion)
99
}
1010

1111
libraryDependencies ++= Seq(

src/sbt-test/settings/testconfig/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"""|The system property 'plugin.version' is not defined.
66
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin
77
)
8-
else addSbtPlugin("com.thesamet" % "sbt-protoc" % pluginVersion)
8+
else addSbtPlugin("com.whisk" % "sbt-protoc" % pluginVersion)
99
}

0 commit comments

Comments
 (0)