Skip to content

Commit

Permalink
try publishing 0.9.19 with publishMavenStyle set to true
Browse files Browse the repository at this point in the history
  • Loading branch information
SethTisue committed Nov 29, 2022
1 parent c67cc1d commit af5406e
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# dbuild release notes

### 0.9.19

- Fix publishing

### 0.9.18

- Force scala-xml dependency to 2.x, for compatibility with sbt 1.8.0
- Publish JARs to Maven Central (not Bintray)
- Publish tarball to GitHub (not Cloudsmith)

### 0.9.17

- Use https not http
Expand Down
24 changes: 22 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,12 +1,33 @@
import Dependencies._
import RemoteDepHelper._

def MyVersion: String = "0.9.18"
def MyVersion: String = "0.9.19"

// override to match what Scala 2.12.17 uses
dependencyOverrides in ThisBuild +=
"org.scala-lang.modules" %% "scala-xml" % "2.1.0"

// keep Maven Central happy
developers in ThisBuild := List(
Developer(
id = "cunei",
name = "Antonio Cunei",
email = "antonio.cunei@typesafe.com",
url = url("https://www.lightbend.com")
),
Developer(
id = "SethTisue",
name = "Seth Tisue",
email = "seth.tisue@lightbend.com",
url = url("https://www.lightbend.com")
))
homepage in ThisBuild := Some(url("http://lightbend-labs.github.io/dbuild/"))
scmInfo in ThisBuild := Some(
ScmInfo(
url("https://github.com/lightbend-labs/dbuild"),
"scm:git:git@github.com:lightbend-labs/dbuild.git")
)

def SubProj(name: String) = (
Project(name, file(if (name=="root") "." else name))
configs( IntegrationTest )
Expand All @@ -17,7 +38,6 @@ def SubProj(name: String) = (
selectScalaVersion,
resolvers += Resolver.typesafeIvyRepo("releases"),
resolvers += "Typesafe Repository" at "https://repo.typesafe.com/typesafe/releases/",
publishMavenStyle := false,
licenses += ("Apache-2.0", url("https://opensource.org/licenses/Apache-2.0")),
publishTo := sonatypePublishTo.value
)
Expand Down

0 comments on commit af5406e

Please sign in to comment.