Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Pritzlaff committed Jan 2, 2022
1 parent 5a487e6 commit 6859071
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Expand Up @@ -14,7 +14,6 @@ ThisBuild / releasePublishArtifactsAction := PgpKeys.publishSigned.value
ThisBuild / publishMavenStyle := true
ThisBuild / exportJars := false
ThisBuild / pomIncludeRepository := (_ => false)
ThisBuild / pushRemoteCacheConfiguration := pushRemoteCacheConfiguration.value.withOverwrite(true)
ThisBuild / publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value)
Expand Down Expand Up @@ -59,7 +58,8 @@ lazy val root = project
name := "code-template",
//fork := true,
packageOptions in (Compile, packageBin) += Package.ManifestAttributes("git-sha" -> git.gitHeadCommit.value.getOrElse("unknown")),
git.remoteRepo := s"git@github.com:aaronp/code-template.git"
git.remoteRepo := s"git@github.com:aaronp/code-template.git",
pushRemoteCacheConfiguration := pushRemoteCacheConfiguration.value.withOverwrite(true)
)
.settings(libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.10" % Test)
.settings(libraryDependencies += "org.scala-lang" %% "scala3-staging" % "3.1.0")
Expand Down

0 comments on commit 6859071

Please sign in to comment.