Skip to content

Commit 7e26f8a

Browse files
committed
Change organization to com.github.izhangzhihao
1 parent eebe150 commit 7e26f8a

File tree

7 files changed

+7
-11
lines changed

7 files changed

+7
-11
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ use cases. Please see [below](#define-custom-sparksubmit-task) for more details
7272
For sbt 0.13.6+ add sbt-spark-submit to your `project/plugins.sbt` or `~/.sbt/0.13/plugins/plugins.sbt` file:
7373

7474
```scala
75-
addSbtPlugin("com.github.saurfang" % "sbt-spark-submit" % "0.0.4")
75+
addSbtPlugin("com.github.izhangzhihao" % "sbt-spark-submit" % "0.0.4")
7676
```
7777

7878
Naturally you will need to have spark dependency in your project itself such as:

build.sbt

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
lazy val commonSettings = Seq(
2-
organization in ThisBuild := "com.github.saurfang",
2+
organization in ThisBuild := "com.github.izhangzhihao",
33
scalaVersion := "2.10.7",
44
javacOptions ++= Seq("-source", "1.8", "-target", "1.8"),
55
scalacOptions ++= Seq("-deprecation", "-feature"),
@@ -16,9 +16,7 @@ lazy val root = (project in file(".")).
1616
name := "sbt-spark-submit",
1717
licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.html")),
1818
publishMavenStyle := false,
19-
bintrayRepository := {
20-
if(isSnapshot.value) "sbt-plugin-snapshots" else "sbt-plugin-releases"
21-
},
19+
bintrayRepository := "sbt-plugin-releases",
2220
bintrayOrganization := None
2321
).
2422
settings(scriptedSettings: _*).

examples/sbt-assembly-on-yarn/project/plugins.sbt

-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,4 @@ lazy val root = Project("plugins", file(".")).dependsOn(plugin)
22

33
lazy val plugin = file("../../").getCanonicalFile.toURI
44

5-
//addSbtPlugin("com.github.saurfang" % "sbt-spark-submit" % "0.0.1")
6-
75
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.13.0")

project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
libraryDependencies += "org.scala-sbt" % "scripted-plugin" % sbtVersion.value
22

3-
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.6")
3+
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.8")
44

55
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
66

src/sbt-test/sbt-spark-submit/multi-main/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
if(pluginVersion == null)
44
throw new RuntimeException("""|The system property 'plugin.version' is not defined.
55
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin)
6-
else addSbtPlugin("com.github.saurfang" % "sbt-spark-submit" % pluginVersion)
6+
else addSbtPlugin("com.github.izhangzhihao" % "sbt-spark-submit" % pluginVersion)
77
}

src/sbt-test/sbt-spark-submit/multi-project/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
if(pluginVersion == null)
44
throw new RuntimeException("""|The system property 'plugin.version' is not defined.
55
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin)
6-
else addSbtPlugin("com.github.saurfang" % "sbt-spark-submit" % pluginVersion)
6+
else addSbtPlugin("com.github.izhangzhihao" % "sbt-spark-submit" % pluginVersion)
77
}

src/sbt-test/sbt-spark-submit/sparkpi/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
if(pluginVersion == null)
44
throw new RuntimeException("""|The system property 'plugin.version' is not defined.
55
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin)
6-
else addSbtPlugin("com.github.saurfang" % "sbt-spark-submit" % pluginVersion)
6+
else addSbtPlugin("com.github.izhangzhihao" % "sbt-spark-submit" % pluginVersion)
77
}

0 commit comments

Comments
 (0)