Skip to content

Commit 55698b7

Browse files
authored
Prepare release (#272)
1 parent ccfb8c1 commit 55698b7

File tree

6 files changed

+10
-25
lines changed

6 files changed

+10
-25
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ jobs:
4343
- name: Check that workflows are up to date
4444
run: sbt '++ ${{ matrix.scala }}' githubWorkflowCheck
4545

46-
- name: Build project
47-
run: sbt '++ ${{ matrix.scala }}' test
46+
- run: sbt '++ ${{ matrix.scala }}' test scripted
4847

4948
- name: Compress target directories
5049
run: tar cf targets.tar target project/target

README.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
# sbt-paradox-apidoc [![maven-central-badge][]][maven-central] [![github-actions-badge][]][github-actions]
2-
3-
[maven-central]: https://maven-badges.herokuapp.com/maven-central/com.lightbend.paradox/sbt-paradox-apidoc
4-
[maven-central-badge]: https://maven-badges.herokuapp.com/maven-central/com.lightbend.paradox/sbt-paradox-apidoc/badge.svg
5-
[github-actions]: https://github.com/lightbend/sbt-paradox-apidoc/actions/workflows/ci.yml?query=branch%3Amaster
6-
[github-actions-badge]: https://github.com/lightbend/sbt-paradox-apidoc/actions/workflows/ci.yml/badge.svg?branch=master
1+
# sbt-paradox-apidoc
72

83
A [paradox](https://github.com/lightbend/paradox/) directive that automatically adds links for classes from documentation to scaladoc and javadoc.
94

@@ -123,7 +118,3 @@ The license is Apache 2.0, see LICENSE.
123118
## Maintanance notes
124119

125120
**This project is NOT supported under the Lightbend subscription.**
126-
127-
The project is maintained mostly by [@richardimaoka](https://github.com/richardimaoka) and [@akka-team](https://github.com/orgs/lightbend/teams/akka-team/members).
128-
129-
Feel free to ping above maintainers for code review or discussions. Pull requests are very welcome–thanks in advance!

RELEASING.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Releasing
22

3-
Releasing from CI was removed as Bintray passed away.
4-
5-
1. Wait until all running [Travis CI jobs](https://travis-ci.org/lightbend/sbt-paradox-apidoc/builds) complete, if any.
6-
1. Fix up the [draft release](https://github.com/lightbend/sbt-paradox-apidoc/releases) created by the release drafter and set the next tag version (e.g. `v0.2`)
7-
1. Ensure you're on JDK 8
8-
1. Pull the tag, build and publish the release to Sonatype
3+
* Draft a [new release on GitHub](https://github.com/lightbend/sbt-paradox-apidoc/releases)
4+
* Tag it (with a `v` prefix)
5+
* Github actions should automatically release to maven-central

build.sbt

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,12 @@ ThisBuild / githubWorkflowPublish := Seq(
5252
)
5353
)
5454

55-
ThisBuild / publishMavenStyle := true
56-
ThisBuild / publishTo := sonatypePublishTo.value
57-
ThisBuild / test / publishArtifact := false
58-
ThisBuild / pomIncludeRepository := (_ => false)
59-
sonatypeProfileName := "com.lightbend"
55+
ThisBuild / publishTo := sonatypePublishTo.value
56+
sonatypeProfileName := "com.lightbend"
6057

6158
ThisBuild / githubWorkflowJavaVersions := List(
6259
JavaSpec.temurin("11")
6360
)
6461

6562
ThisBuild / githubWorkflowTargetBranches := Seq("main")
63+
ThisBuild / githubWorkflowBuild := Seq(WorkflowStep.Sbt(List("test", "scripted")))

project/Dependencies.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import sbt._
33
object Library {
44
val classgraph = "io.github.classgraph" % "classgraph" % "4.8.165"
55
val sbtParadox = "com.lightbend.paradox" % "sbt-paradox" % "0.10.6"
6-
val scalatest = "org.scalatest" %% "scalatest" % "3.2.14"
76
val paradoxTestkit = "com.lightbend.paradox" %% "testkit" % "0.10.6"
7+
val scalatest = "org.scalatest" %% "scalatest" % "3.2.17"
88
}

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0")
2-
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
2+
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
33
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.22.0")
44
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")

0 commit comments

Comments
 (0)