File tree 4 files changed +17
-4
lines changed
4 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 28
28
matrix :
29
29
os : [ubuntu-latest]
30
30
scala : [3.0.2, 2.12.15, 2.13.6]
31
- java : [adoptium @11]
31
+ java : [temurin @11]
32
32
runs-on : ${{ matrix.os }}
33
33
steps :
34
34
- name : Checkout current branch (full)
78
78
matrix :
79
79
os : [ubuntu-latest]
80
80
scala : [2.13.6]
81
- java : [adoptium @11]
81
+ java : [temurin @11]
82
82
runs-on : ${{ matrix.os }}
83
83
steps :
84
84
- name : Checkout current branch (full)
@@ -146,7 +146,7 @@ jobs:
146
146
matrix :
147
147
os : [ubuntu-latest]
148
148
scala : [2.13.6]
149
- java : [adoptium @11]
149
+ java : [temurin @11]
150
150
runs-on : ${{ matrix.os }}
151
151
steps :
152
152
- name : Download target directories (3.0.2)
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ val Scala213 = "2.13.6"
22
22
ThisBuild / crossScalaVersions := Seq (" 3.0.2" , " 2.12.15" , Scala213 )
23
23
24
24
ThisBuild / githubWorkflowEnv += (" JABBA_INDEX" -> " https://github.com/typelevel/jdk-index/raw/main/index.json" )
25
- ThisBuild / githubWorkflowJavaVersions := Seq (" adoptium @11" )
25
+ ThisBuild / githubWorkflowJavaVersions := Seq (" temurin @11" )
26
26
27
27
ThisBuild / spiewakCiReleaseSnapshots := true
28
28
Original file line number Diff line number Diff line change
1
+ import sbt ._ , Keys ._
2
+
3
+ import sbtspiewak .SpiewakSonatypePlugin
4
+ import xerial .sbt .Sonatype .SonatypeKeys ._
5
+
6
+ object Publish extends AutoPlugin {
7
+
8
+ override def requires = SpiewakSonatypePlugin
9
+ override def trigger = allRequirements
10
+
11
+ override def projectSettings = Seq (sonatypeCredentialHost := " s01.oss.sonatype.org" )
12
+ }
Original file line number Diff line number Diff line change @@ -7,3 +7,4 @@ addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.3")
7
7
addSbtPlugin(" org.scalameta" % " sbt-scalafmt" % " 2.4.3" )
8
8
addSbtPlugin(" com.47deg" % " sbt-microsites" % " 1.3.4" )
9
9
addSbtPlugin(" org.scalameta" % " sbt-mdoc" % " 2.2.23" )
10
+ addSbtPlugin(" org.xerial.sbt" % " sbt-sonatype" % " 3.9.11" )
You can’t perform that action at this time.
0 commit comments