Skip to content

Commit

Permalink
Change package to com.github.sbt.git
Browse files Browse the repository at this point in the history
To prevent classpath problems when it is on the same classpath with
the sbt-git when it was published with the old

Refs sbt#216
  • Loading branch information
raboof committed Mar 16, 2022
1 parent 59fedf8 commit 96835fc
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.typesafe.sbt.git
package com.github.sbt.git

import scala.util.Try

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.typesafe.sbt.git
package com.github.sbt.git

import sbt._
import Keys._
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
package com.typesafe.sbt
package com.github.sbt.git

import sbt._
import Keys._
import git.{ConsoleGitReadableOnly, ConsoleGitRunner, DefaultReadableGit, GitRunner, JGitRunner, ReadableGit}
import sys.process.Process

/** This plugin has all the basic 'git' functionality for other plugins. */
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.typesafe.sbt.git
package com.github.sbt.git

import sbt._

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.typesafe.sbt.git
package com.github.sbt.git

import org.eclipse.jgit.lib.Repository
import org.eclipse.jgit.storage.file.FileRepositoryBuilder
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.typesafe.sbt.git
package com.github.sbt.git

import sbt._
import Keys._
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.typesafe.sbt.git
package com.github.sbt.git

import sbt.LogEvent
import sbt.Level
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.typesafe.sbt.git
package com.github.sbt.git

/** An interface for interacting with git in a read-only manner. */
trait ReadableGit {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.typesafe.sbt
package com.github.sbt.git

import sbt.ScmInfo
import sbt.url
Expand Down

0 comments on commit 96835fc

Please sign in to comment.