Skip to content

Commit 9028d54

Browse files
committed
Fix Sonatype repository
1 parent a909a4a commit 9028d54

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

README.md

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

3+
[![Continuous Integration](https://github.com/BotTech/scala2plantuml/actions/workflows/ci.yml/badge.svg)](https://github.com/BotTech/scala2plantuml/actions/workflows/ci.yml)
4+
![Scala2PlantUML Version](https://img.shields.io/maven-central/v/nz.co.bottech/scala2plantuml_2.13?label=Scala2PlantUML)
5+
36
Scala2PlantUML generates [PlantUML] diagrams from Scala code.
47

58
It comes as a standalone library, a CLI tool and an sbt plugin.
@@ -33,7 +36,7 @@ For most use cases you should add Scala2PlantUML as a global plugin since your b
3336
Create `~/.sbt/1.0/plugins/scala2PlantUML.sbt` containing:
3437

3538
```text
36-
addSbtPlugin("nz.co.bottech" % "sbt-scala2plantuml" % "0.1.5")
39+
addSbtPlugin("nz.co.bottech" % "sbt-scala2plantuml" % "0.1.6")
3740
```
3841

3942
## CLI
@@ -49,7 +52,7 @@ cs install --channel https://git.io/Jqv1i scala2plantuml
4952
### Usage
5053

5154
```text
52-
Scala2PlantUML version 0.1.5
55+
Scala2PlantUML version 0.1.6
5356
Usage: scala2plantuml [options] symbol
5457
5558
Scala2PlantUML generates PlantUML Class Diagrams from Scala SemanticDB files.

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import sbt.Def
2-
31
val scala212 = "2.12.13"
42
val scala213 = "2.13.4"
53
val supportedScalaVersions = List(scala212, scala213)
@@ -89,7 +87,7 @@ inThisBuild(
8987
// This needs to be set otherwise the GitHub workflow plugin gets confused about which
9088
// version to use for the publish job.
9189
scalaVersion := scala212,
92-
versionPolicyFirstVersion := Some("0.1.5"),
90+
versionPolicyFirstVersion := Some("0.1.6"),
9391
versionPolicyIntention := Compatibility.BinaryAndSourceCompatible,
9492
versionScheme := Some("early-semver")
9593
)
@@ -99,6 +97,8 @@ val commonProjectSettings = List(
9997
isScala213 := isScala213Setting.value,
10098
scalastyleFailOnError := true,
10199
scalastyleFailOnWarning := true,
100+
sonatypeCredentialHost := "s01.oss.sonatype.org",
101+
sonatypeRepository := "https://s01.oss.sonatype.org/service/local",
102102
// Workaround for https://github.com/cb372/sbt-explicit-dependencies/issues/97
103103
undeclaredCompileDependenciesFilter -= moduleFilter("com.thesamet.scalapb", "scalapb-runtime"),
104104
Compile / compile / wartremoverErrors := {

docs/README.md

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

3+
[![Continuous Integration](https://github.com/BotTech/scala2plantuml/actions/workflows/ci.yml/badge.svg)](https://github.com/BotTech/scala2plantuml/actions/workflows/ci.yml)
4+
![Scala2PlantUML Version](https://img.shields.io/maven-central/v/nz.co.bottech/scala2plantuml_2.13?label=Scala2PlantUML)
5+
36
Scala2PlantUML generates [PlantUML] diagrams from Scala code.
47

58
It comes as a standalone library, a CLI tool and an sbt plugin.

0 commit comments

Comments
 (0)