Skip to content

Commit

Permalink
remove version.sbt, use git to version
Browse files Browse the repository at this point in the history
  • Loading branch information
echeipesh committed Apr 3, 2023
1 parent 7792d12 commit fa15df5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
13 changes: 7 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,23 @@
// Leave me and my custom keys alone!
Global / lintUnusedKeysOnLoad := false
ThisBuild / versionScheme := Some("semver-spec")
ThisBuild / dynverVTagPrefix := false
ThisBuild / dynverSonatypeSnapshots := true
ThisBuild / publishMavenStyle := true
ThisBuild / Test / publishArtifact := false

addCommandAlias("makeSite", "docs/makeSite")
addCommandAlias("previewSite", "docs/previewSite")
addCommandAlias("ghpagesPushSite", "docs/ghpagesPushSite")
addCommandAlias("console", "datasource/console")

ThisBuild / sonatypeCredentialHost := "s01.oss.sonatype.org"
ThisBuild / sonatypeRepository := "https://s01.oss.sonatype.org/service/local"

// Prefer our own IntegrationTest config definition, which inherits from Test.
lazy val IntegrationTest = config("it") extend Test

lazy val root = project
.in(file("."))
.withId("RasterFrames")
.aggregate(core, datasource, pyrasterframes)
.aggregate(core, datasource)
.settings(publish / skip := true)

lazy val `rf-notebook` = project
.dependsOn(pyrasterframes)
Expand Down Expand Up @@ -203,4 +204,4 @@ lazy val docs = project
lazy val bench = project
.disablePlugins(CiReleasePlugin)
.dependsOn(core % "compile->test")
.settings(publish / skip := true)
.settings(publish / skip := true)
1 change: 0 additions & 1 deletion project/RFProjectPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import com.github.sbt.git.{GitPlugin, SbtGit}
import com.github.sbt.git.SbtGit.git
import sbt.Keys._
import sbt._
import xerial.sbt.Sonatype.autoImport._

/**
* @since 8/20/17
Expand Down
1 change: 0 additions & 1 deletion version.sbt

This file was deleted.

0 comments on commit fa15df5

Please sign in to comment.