Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ libraryDependencies += "org.playframework.silhouette" %% "play-silhouette-testki
This fork of `play-silhouette` shall also be releasing SNAPSHOTS of the latest passed builds which can be used for the latest, bleeding-edge features, patches and code fixes prior to official production releases. If you want to pull these for testing with your code in development environments, please ensure that you add the appropriate resolver below, and select the appropriate version with `x.x.x` (>= 7.0.1).

```
resolvers += "snapshots" at "https://s01.oss.sonatype.org/content/repositories/snapshots/"
resolvers += Resolver.sonatypeCentralSnapshots
libraryDependencies += "org.playframework.silhouette" %% "play-silhouette" % "x.x.x-SNAPSHOT"
libraryDependencies += "org.playframework.silhouette" %% "play-silhouette-cas" % "x.x.x-SNAPSHOT"
libraryDependencies += "org.playframework.silhouette" %% "play-silhouette-crypto-jca" % "x.x.x-SNAPSHOT"
Expand Down
4 changes: 0 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,9 @@ lazy val supportedScalaVersions: Seq[String] = Seq(scala213, scala3)

Global / evictionErrorLevel := Level.Info

val sonatypeProfile = "org.playframework"

val previousVersion: Option[String] = None // Some("0.8.0")

val commonSettings = Seq(
sonatypeProfileName := sonatypeProfile,
mimaPreviousArtifacts := previousVersion.map(organization.value %% moduleName.value % _).toSet,
mimaBinaryIssueFilters ++= Seq(
)
Expand Down Expand Up @@ -94,7 +91,6 @@ lazy val root = (project in file("."))
.enablePlugins(ScalaUnidocPlugin)
.settings(
name := "play-silhouette-root",
sonatypeProfileName := sonatypeProfile,
Defaults.coreDefaultSettings,
publish / skip := true,
)
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin(dependency = "ch.epfl.scala" % "sbt-version-policy" % "3.2.1")
addSbtPlugin(dependency = "com.github.sbt" % "sbt-unidoc" % "0.5.0")
addSbtPlugin(dependency = "org.playframework" % "sbt-plugin" % "3.0.8")
addSbtPlugin(dependency = "com.github.sbt" % "sbt-ci-release" % "1.9.3")
addSbtPlugin(dependency = "com.github.sbt" % "sbt-ci-release" % "1.11.1")
Loading