Skip to content

Commit 550cb0a

Browse files
author
Corey Stubbs
committedDec 12, 2014
Updated organization name to com.ibm.spark
1 parent 6f9c7c2 commit 550cb0a

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed
 

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# Image Properties
1818
KERNEL_IMAGE?=spark-kernel
1919
KERNEL_BUILD_ID?=latest
20-
DOCKER_REGISTRY?=ignitio:5000
20+
DOCKER_REGISTRY?=com.ibm.spark:5000
2121
FULL_IMAGE?=$(DOCKER_REGISTRY)/$(KERNEL_IMAGE):$(KERNEL_BUILD_ID)
2222
CACHE?="--no-cache"
2323

‎client/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ directory. You can now include the Spark Kernel Client jar in your SBT
1515
dependencies:
1616

1717
```
18-
libraryDependencies += "ignitio" %% "client" % "0.1.1-SNAPSHOT"
18+
libraryDependencies += "com.ibm.spark" %% "client" % "0.1.1-SNAPSHOT"
1919
```
2020

2121
## Usage Instructions

‎docs/MAGICS.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ modules of the Spark Kernel to your project.
9797
In _sbt_, you can add the following lines:
9898

9999
libraryDependencies ++= Seq(
100-
"ignitio" %% "kernel-api" % "0.1.1-SNAPSHOT",
101-
"ignitio" %% "protocol" % "0.1.1-SNAPSHOT"
100+
"com.ibm.spark" %% "kernel-api" % "0.1.1-SNAPSHOT",
101+
"com.ibm.spark" %% "protocol" % "0.1.1-SNAPSHOT"
102102
)
103103

104104
As the modules are not hosted on any repository, you will also need to build

‎kernel/src/test/scala/com/ibm/spark/magic/builtin/AddDepsSpec.scala

+5-5
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ class AddDepsSpec extends FunSpec with Matchers with MockitoSugar
105105
override val outputStream: OutputStream = mock[OutputStream]
106106
}
107107

108-
val expected = "com.ibm" :: "ignitio" :: "1.0" :: "--transitive" :: Nil
108+
val expected = "com.ibm.spark" :: "kernel" :: "1.0" :: "--transitive" :: Nil
109109
addDepsMagic.executeLine(expected.mkString(" "))
110110

111111
verify(mockDependencyDownloader).retrieve(
@@ -131,7 +131,7 @@ class AddDepsSpec extends FunSpec with Matchers with MockitoSugar
131131
override val outputStream: OutputStream = mock[OutputStream]
132132
}
133133

134-
val expected = "com.ibm" :: "ignitio" :: "1.0" :: Nil
134+
val expected = "com.ibm.spark" :: "kernel" :: "1.0" :: Nil
135135
addDepsMagic.executeLine(expected.mkString(" "))
136136

137137
verify(mockDependencyDownloader).retrieve(
@@ -158,7 +158,7 @@ class AddDepsSpec extends FunSpec with Matchers with MockitoSugar
158158
override val outputStream: OutputStream = mock[OutputStream]
159159
}
160160

161-
val expected = "com.ibm" :: "ignitio" :: "1.0" :: Nil
161+
val expected = "com.ibm.spark" :: "kernel" :: "1.0" :: Nil
162162
addDepsMagic.executeLine(expected.mkString(" "))
163163

164164
verify(mockInterpreter).addJars(any[URL])
@@ -187,7 +187,7 @@ class AddDepsSpec extends FunSpec with Matchers with MockitoSugar
187187
override val outputStream: OutputStream = mock[OutputStream]
188188
}
189189

190-
val expected = "com.ibm" :: "ignitio" :: "1.0" :: Nil
190+
val expected = "com.ibm.spark" :: "kernel" :: "1.0" :: Nil
191191
addDepsMagic.executeLine(expected.mkString(" "))
192192

193193
verify(mockSparkContext, times(3)).addJar(anyString())
@@ -238,7 +238,7 @@ class AddDepsSpec extends FunSpec with Matchers with MockitoSugar
238238

239239
val expected = MagicOutput()
240240
val actual = addDepsMagic.executeLine((
241-
"com.ibm" :: "ignitio" :: "1.0" :: Nil).mkString(" "))
241+
"com.ibm.spark" :: "kernel" :: "1.0" :: Nil).mkString(" "))
242242
actual should be (expected)
243243
}
244244
}

‎project/Common.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ object Common {
3030
val repoEndpoint = Properties.envOrElse("REPO_ENDPOINT", if(snapshot) "/nexus/content/repositories/snapshots/" else "/nexus/content/repositories/releases/")
3131
val repoUrl = Properties.envOrElse("REPO_URL", s"http://${repoHost}:${repoPort}${repoEndpoint}")
3232

33-
private val buildOrganization = "ignitio"
33+
private val buildOrganization = "com.ibm.spark"
3434
private val buildVersion = if(snapshot) "0.1.1-SNAPSHOT" else "0.1.1"
3535
private val buildScalaVersion = "2.10.4"
3636
private val buildSbtVersion = "0.13.5"
@@ -90,7 +90,7 @@ object Common {
9090
unmanagedResourceDirectories in Test +=
9191
(baseDirectory in Build.root).value / "resources/test",
9292

93-
publishTo := Some("Ignitio Nexus Repo" at repoUrl),
93+
publishTo := Some("Spark Kernel Nexus Repo" at repoUrl),
9494

9595
credentials += Credentials("Sonatype Nexus Repository Manager", repoHost, repoUsername, repoPassword),
9696

0 commit comments

Comments
 (0)
Please sign in to comment.