Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ libraryDependencies ++= Seq(
(pluginCrossBuild / sbtVersion) := {
scalaBinaryVersion.value match {
case "2.12" => "1.5.8"
case _ => "2.0.0-RC2"
case _ => "2.0.0-RC3"
}
}

Expand Down
14 changes: 0 additions & 14 deletions src/main/scala-2.12/PluginCompat.scala

This file was deleted.

5 changes: 0 additions & 5 deletions src/main/scala-3/PluginCompat.scala

This file was deleted.

3 changes: 1 addition & 2 deletions src/main/scala/com/github/sbt/git/GitPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package com.github.sbt.git

import sbt.*
import Keys.*
import PluginCompat.*

/** This plugin has all the basic 'git' functionality for other plugins. */
object SbtGit {
Expand All @@ -22,7 +21,7 @@ object SbtGit {
val gitUncommittedChanges = SettingKey[Boolean]("git-uncommitted-changes", "Whether there are uncommitted changes.")

// A Mechanism to run Git directly.
@cacheLevel(include = Array.empty)
@transient
val gitRunner = TaskKey[GitRunner]("git-runner", "The mechanism used to run git in the current build.")

// Keys associated with setting a version number.
Expand Down