Skip to content

Commit

Permalink
Release fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tlazaro committed Apr 5, 2021
1 parent eef7496 commit 103611a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
11 changes: 9 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ lazy val sharedSettings: Seq[Setting[_]] = Seq[Setting[_]](
scalaVersion := scala_2_13Version,
scalacOptions ++= theScalacOptions(scalaVersion.value),
javacOptions ++= Seq("-encoding", "UTF-8"),
fork in Test := false,
Test / fork := false,
fork := true,
sonatypeCredentialHost := "s01.oss.sonatype.org",
sonatypeRepository := "https://s01.oss.sonatype.org/service/local"
Expand Down Expand Up @@ -94,4 +94,11 @@ lazy val play25_monad = project
)

// All projects
lazy val root = project.in(file(".")).settings(sharedSettings: _*).aggregate(play24_monad, play25_monad)
lazy val root = project
.in(file("."))
.settings(
sharedSettings ++ Seq[Setting[_]](
publish / skip := true
): _*
)
.aggregate(play24_monad, play25_monad)
4 changes: 2 additions & 2 deletions play25/play-sample/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ organization := "io.playmonad"

version := "0.1-SNAPSHOT"

resolvers += Resolver.sonatypeRepo("public")
resolvers += Resolver.sonatypeRepo("snapshot")

lazy val root = (project in file(".")).enablePlugins(PlayScala)

Expand All @@ -12,4 +12,4 @@ scalaVersion := "2.11.12"
libraryDependencies += filters
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "2.0.1" % Test

libraryDependencies += "dev.playmonad" %% "play25-monad" % "0.1.1"
libraryDependencies += "dev.playmonad" %% "play25-monad" % "0.1.0"

0 comments on commit 103611a

Please sign in to comment.