diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca0b80f..f7c67a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.17] + scala: [2.12.18] java: [temurin@11, temurin@17] runs-on: ${{ matrix.os }} steps: @@ -69,7 +69,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.17] + scala: [2.12.18] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -94,12 +94,12 @@ jobs: java-version: 17 cache: sbt - - name: Download target directories (2.12.17) + - name: Download target directories (2.12.18) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-2.12.17-${{ matrix.java }} + name: target-${{ matrix.os }}-2.12.18-${{ matrix.java }} - - name: Inflate target directories (2.12.17) + - name: Inflate target directories (2.12.18) run: | tar xf targets.tar rm targets.tar diff --git a/README.md b/README.md index 8050a44..656c558 100644 --- a/README.md +++ b/README.md @@ -15,9 +15,3 @@ addSbtPlugin("com.lightbend.lightbend" % "sbt-paradox-lightbend-project-info" % ``` Since this is an auto-plugin that automatically triggers its already enabled when you include it as a dependency. - -## Releasing - -- Tag the commit you want to release and push it -- Github actions should automatically release - to [maven-central](https://maven-badges.herokuapp.com/maven-central/com.lightbend.paradox/sbt-paradox-lightbend-project-info) diff --git a/RELEASING.md b/RELEASING.md new file mode 100644 index 0000000..c0d9557 --- /dev/null +++ b/RELEASING.md @@ -0,0 +1,5 @@ +# Releasing + +* Draft a [new release on GitHub](https://github.com/lightbend/sbt-paradox-lightbend-project-info/releases) +* Tag it (with a `v` prefix) +* Github actions should automatically release to maven-central diff --git a/build.sbt b/build.sbt index de34280..f5ff8d7 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -ThisBuild / scalaVersion := "2.12.17" +ThisBuild / scalaVersion := "2.12.18" sbtPlugin := true @@ -49,9 +49,7 @@ ThisBuild / githubWorkflowPublish := Seq( ) ) -ThisBuild / test / publishArtifact := false -ThisBuild / pomIncludeRepository := (_ => false) -sonatypeProfileName := "com.lightbend" +sonatypeProfileName := "com.lightbend" ThisBuild / githubWorkflowJavaVersions := List( JavaSpec.temurin("11"), diff --git a/project/build.properties b/project/build.properties index 8b9a0b0..abbbce5 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.8.0 +sbt.version=1.9.8 diff --git a/project/plugins.sbt b/project/plugins.sbt index 6ea71d1..70db144 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.6.5") -addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6") +addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0") +addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.22.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")