Skip to content

Commit

Permalink
v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
makenowjust committed Oct 26, 2020
1 parent e714273 commit 05367ea
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import java.nio.file.Path

Global / onChangedBuildSource := ReloadOnSourceChanges

ThisBuild / sonatypeProfileName := "codes.quine"
ThisBuild / organization := "codes.quine.labo"
ThisBuild / homepage := Some(url("https://github.com/MakeNowJust-Labo/redos"))
ThisBuild / licenses := Seq("MIT" -> url("http://opensource.org/licenses/MIT"))
Expand Down Expand Up @@ -33,14 +32,17 @@ ThisBuild / scalafixDependencies += "com.github.vovapolu" %% "scaluzzi" % "0.1.1

lazy val root = project
.in(file("."))
.settings(publish / skip := true)
.settings(
sonatypeProfileName := "codes.quine",
publish / skip := true
)
.aggregate(coreJVM, coreJS, demoJS)

lazy val core = crossProject(JVMPlatform, JSPlatform)
.in(file("modules/core"))
.settings(
name := "redos-core",
version := "0.1.1-SNAPSHOT",
version := "0.1.0",
console / initialCommands := """
|import scala.concurrent.duration._
|
Expand Down

0 comments on commit 05367ea

Please sign in to comment.