Skip to content

Commit

Permalink
release settings
Browse files Browse the repository at this point in the history
  • Loading branch information
yurique committed Jun 2, 2021
1 parent 6b6f0f0 commit 4547093
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ The accompanying macro allowing to access those objects more easily: [embedded-f
### `plugins.sbt`

```scala
addSbtPlugin("com.yurique" % "sbt-embedded-files" % "0.2.0")
addSbtPlugin("com.yurique" % "sbt-embedded-files" % "0.2.1")
```

### `build.sbt`

```scala
libraryDependencies += "com.yurique" %%% "embedded-files-macro" % "0.2.0"
libraryDependencies += "com.yurique" %%% "embedded-files-macro" % "{embedded-files-macro-version}"
```

## Example usage
Expand Down
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
inThisBuild(
List(
organization := "com.yurique",
description := "An sbt plugin that generates scala objects embedding the contents of files.",
homepage := Some(url("https://github.com/yurique/embedded-files")),
licenses += ("MIT", url("https://github.com/yurique/embedded-files/LICENSE")),
developers := List(Developer("yurique", "Iurii Malchenko", "[email protected]", url("https://github.com/yurique"))),
description := "An sbt plugin that generates Scala objects embedding the contents of files.",
scmInfo := Some(ScmInfo(url("https://github.com/yurique/embedded-files"), "scm:[email protected]/yurique/embedded-files.git")),
githubWorkflowBuild := Seq(WorkflowStep.Sbt(List("scripted"))),
githubWorkflowTargetTags ++= Seq("v*"),
githubWorkflowPublishTargetBranches := Seq(RefPredicate.StartsWith(Ref.Tag("v"))),
Expand Down

0 comments on commit 4547093

Please sign in to comment.