Skip to content

Commit

Permalink
Set up sbt-ci-release
Browse files Browse the repository at this point in the history
  • Loading branch information
reibitto committed Dec 19, 2021
1 parent 2b73e90 commit c628dc6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -19,7 +19,7 @@ aliases are optional, but can be useful for particularly long commands.
Add the following to `project/plugins.sbt`:

```scala
addSbtPlugin("com.github.reibitto" % "sbt-welcome" % "0.2.0")
addSbtPlugin("com.github.reibitto" % "sbt-welcome" % "0.2.2")
```

## Commands
Expand All @@ -41,7 +41,8 @@ logo :=
|_(__ )_ /_/ / /_ __ |/ |/ // __/ / / /__ / /_/ / / / / / / __/
|/____/ /_.___/\\__/ ____/|__/ \\___//_/ \\___/ \\____//_/ /_/ /_/\\___/
|
| ${version.value}
|${version.value}
|
|${scala.Console.YELLOW}Scala ${scalaVersion.value}${scala.Console.RESET}
|
|""".stripMargin
Expand Down
17 changes: 15 additions & 2 deletions build.sbt
@@ -1,8 +1,18 @@
import sbtwelcome._

inThisBuild(
List(
organization := "com.github.reibitto",
homepage := Some(url("https://github.com/reibitto/sbt-welcome")),
licenses := List("Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
Developer("reibitto", "reibitto", "reibitto@users.noreply.github.com", url("https://reibitto.github.io"))
)
)
)

lazy val root = (project in file(".")).settings(
name := "sbt-welcome",
version := "0.2.2-SNAPSHOT",
organization := "com.github.reibitto",
scalaVersion := "2.12.15",
sbtPlugin := true
Expand All @@ -19,7 +29,8 @@ logo :=
|_(__ )_ /_/ / /_ __ |/ |/ // __/ / / /__ / /_/ / / / / / / __/
|/____/ /_.___/\\__/ ____/|__/ \\___//_/ \\___/ \\____//_/ /_/ /_/\\___/
|
| ${version.value}
|${version.value}
|
|${scala.Console.YELLOW}Scala ${scalaVersion.value}${scala.Console.RESET}
|
|""".stripMargin
Expand All @@ -31,3 +42,5 @@ usefulTasks := Seq(
)

logoColor := scala.Console.MAGENTA

ThisBuild / organization := "com.github.reibitto"

0 comments on commit c628dc6

Please sign in to comment.