Skip to content

Commit 24c5330

Browse files
authored
Merge pull request #218 from armanbilge/change-package
2 parents 59fedf8 + 96835fc commit 24c5330

File tree

9 files changed

+9
-10
lines changed

9 files changed

+9
-10
lines changed

src/main/scala/com/typesafe/sbt/git/ConsoleGitReadableOnly.scala renamed to src/main/scala/com/github/sbt/git/ConsoleGitReadableOnly.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.typesafe.sbt.git
1+
package com.github.sbt.git
22

33
import scala.util.Try
44

src/main/scala/com/typesafe/sbt/git/ConsoleGitRunner.scala renamed to src/main/scala/com/github/sbt/git/ConsoleGitRunner.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.typesafe.sbt.git
1+
package com.github.sbt.git
22

33
import sbt._
44
import Keys._

src/main/scala/com/typesafe/sbt/SbtGit.scala renamed to src/main/scala/com/github/sbt/git/GitPlugin.scala

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
package com.typesafe.sbt
1+
package com.github.sbt.git
22

33
import sbt._
44
import Keys._
5-
import git.{ConsoleGitReadableOnly, ConsoleGitRunner, DefaultReadableGit, GitRunner, JGitRunner, ReadableGit}
65
import sys.process.Process
76

87
/** This plugin has all the basic 'git' functionality for other plugins. */

src/main/scala/com/typesafe/sbt/git/GitRunner.scala renamed to src/main/scala/com/github/sbt/git/GitRunner.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.typesafe.sbt.git
1+
package com.github.sbt.git
22

33
import sbt._
44

src/main/scala/com/typesafe/sbt/git/JGit.scala renamed to src/main/scala/com/github/sbt/git/JGit.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.typesafe.sbt.git
1+
package com.github.sbt.git
22

33
import org.eclipse.jgit.lib.Repository
44
import org.eclipse.jgit.storage.file.FileRepositoryBuilder

src/main/scala/com/typesafe/sbt/git/JGitRunner.scala renamed to src/main/scala/com/github/sbt/git/JGitRunner.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.typesafe.sbt.git
1+
package com.github.sbt.git
22

33
import sbt._
44
import Keys._

src/main/scala/com/typesafe/sbt/git/NullLogger.scala renamed to src/main/scala/com/github/sbt/git/NullLogger.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.typesafe.sbt.git
1+
package com.github.sbt.git
22

33
import sbt.LogEvent
44
import sbt.Level

src/main/scala/com/typesafe/sbt/git/ReadableGit.scala renamed to src/main/scala/com/github/sbt/git/ReadableGit.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.typesafe.sbt.git
1+
package com.github.sbt.git
22

33
/** An interface for interacting with git in a read-only manner. */
44
trait ReadableGit {

src/test/scala/com/typesafe/sbt/SbtGitSuite.scala renamed to src/test/scala/com/github/sbt/git/SbtGitSuite.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.typesafe.sbt
1+
package com.github.sbt.git
22

33
import sbt.ScmInfo
44
import sbt.url

0 commit comments

Comments
 (0)