File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 24
24
matrix :
25
25
os : [ubuntu-latest]
26
26
scala : [2.12.13, 2.13.4]
27
- java : [adopt@1.8]
27
+ java : [adopt@1.11, adopt@1. 8]
28
28
runs-on : ${{ matrix.os }}
29
29
steps :
30
30
- name : Checkout current branch (full)
88
88
matrix :
89
89
os : [ubuntu-latest]
90
90
scala : [2.12.13]
91
- java : [adopt@1.8 ]
91
+ java : [adopt@1.11 ]
92
92
runs-on : ${{ matrix.os }}
93
93
steps :
94
94
- name : Checkout current branch (full)
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ For most use cases you should add Scala2PlantUML as a global plugin since your b
36
36
Create ` ~/.sbt/1.0/plugins/scala2PlantUML.sbt ` containing:
37
37
38
38
``` text
39
- addSbtPlugin("nz.co.bottech" % "sbt-scala2plantuml" % "0.1.10 ")
39
+ addSbtPlugin("nz.co.bottech" % "sbt-scala2plantuml" % "0.1.11 ")
40
40
```
41
41
42
42
## CLI
@@ -52,7 +52,7 @@ cs install --channel https://git.io/Jqv1i scala2plantuml
52
52
### Usage
53
53
54
54
``` text
55
- Scala2PlantUML version 0.1.10
55
+ Scala2PlantUML version 0.1.11
56
56
Usage: scala2plantuml [options] symbol
57
57
58
58
Scala2PlantUML generates PlantUML Class Diagrams from Scala SemanticDB files.
Original file line number Diff line number Diff line change @@ -70,6 +70,9 @@ inThisBuild(
70
70
cond = Some (s """ matrix.scala == ' $scala212' """ )
71
71
)
72
72
),
73
+ // The first of these is the version for the publish job which has to be 9+
74
+ // because of https://github.com/xerial/sbt-sonatype/issues/216
75
+ githubWorkflowJavaVersions := List (" adopt@1.11" , " adopt@1.8" ),
73
76
githubWorkflowPublish := List (
74
77
WorkflowStep .Sbt (
75
78
List (" ci-release" ),
@@ -87,7 +90,7 @@ inThisBuild(
87
90
// This needs to be set otherwise the GitHub workflow plugin gets confused about which
88
91
// version to use for the publish job.
89
92
scalaVersion := scala212,
90
- versionPolicyFirstVersion := Some (" 0.1.10 " ),
93
+ versionPolicyFirstVersion := Some (" 0.1.11 " ),
91
94
versionPolicyIntention := Compatibility .BinaryAndSourceCompatible ,
92
95
versionScheme := Some (" early-semver" )
93
96
)
You can’t perform that action at this time.
0 commit comments