Skip to content

Commit fa15df5

Browse files
committed
remove version.sbt, use git to version
1 parent 7792d12 commit fa15df5

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

build.sbt

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,22 +22,23 @@
2222
// Leave me and my custom keys alone!
2323
Global / lintUnusedKeysOnLoad := false
2424
ThisBuild / versionScheme := Some("semver-spec")
25+
ThisBuild / dynverVTagPrefix := false
26+
ThisBuild / dynverSonatypeSnapshots := true
27+
ThisBuild / publishMavenStyle := true
28+
ThisBuild / Test / publishArtifact := false
2529

2630
addCommandAlias("makeSite", "docs/makeSite")
2731
addCommandAlias("previewSite", "docs/previewSite")
2832
addCommandAlias("ghpagesPushSite", "docs/ghpagesPushSite")
2933
addCommandAlias("console", "datasource/console")
3034

31-
ThisBuild / sonatypeCredentialHost := "s01.oss.sonatype.org"
32-
ThisBuild / sonatypeRepository := "https://s01.oss.sonatype.org/service/local"
33-
3435
// Prefer our own IntegrationTest config definition, which inherits from Test.
3536
lazy val IntegrationTest = config("it") extend Test
3637

3738
lazy val root = project
38-
.in(file("."))
3939
.withId("RasterFrames")
40-
.aggregate(core, datasource, pyrasterframes)
40+
.aggregate(core, datasource)
41+
.settings(publish / skip := true)
4142

4243
lazy val `rf-notebook` = project
4344
.dependsOn(pyrasterframes)
@@ -203,4 +204,4 @@ lazy val docs = project
203204
lazy val bench = project
204205
.disablePlugins(CiReleasePlugin)
205206
.dependsOn(core % "compile->test")
206-
.settings(publish / skip := true)
207+
.settings(publish / skip := true)

project/RFProjectPlugin.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import com.github.sbt.git.{GitPlugin, SbtGit}
22
import com.github.sbt.git.SbtGit.git
33
import sbt.Keys._
44
import sbt._
5-
import xerial.sbt.Sonatype.autoImport._
65

76
/**
87
* @since 8/20/17

version.sbt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)