Skip to content

Commit

Permalink
Move to com.datamountaineer namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
rollulus committed Mar 25, 2016
1 parent f8765ca commit fa8aa43
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.rollulus</groupId>
<groupId>com.datamountaineer.connect</groupId>
<artifactId>kafka-connect-cli</artifactId>
<packaging>jar</packaging>
<version>0.1</version>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.rollulus
package com.datamountaineer.connect.tools

import scopt._

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.rollulus
package com.datamountaineer.connect.tools

trait Formatter {
def connectorNames(ns : Seq[String]): String
Expand All @@ -22,4 +22,4 @@ class PropertiesFormatter extends Formatter {
s"""#Connector `${i.name}`:
|${i.config.toList.map{kv => s"${kv._1}=${kv._2}"}.mkString("\n")}
|#task ids: ${i.tasks.map{t=>t.task.toString}.mkString(sep = "; ")}""".stripMargin
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.rollulus
package com.datamountaineer.connect.tools

import scalaj.http.{HttpResponse, Http}
import spray.json._
Expand Down Expand Up @@ -74,4 +74,4 @@ class KafkaConnectApi(url: java.net.URI) {
def delete(name: String) = {
voidReq(s"/connectors/${name}","DELETE")
}
}
}

0 comments on commit fa8aa43

Please sign in to comment.