Skip to content

Commit

Permalink
Testing publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasthomsen committed Jun 13, 2024
1 parent 9d6ac63 commit 34ca03b
Showing 1 changed file with 21 additions and 6 deletions.
27 changes: 21 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,12 +1,27 @@
inThisBuild(
List(
organization := "com.iterable",
homepage := Some(url("https://github.com/Iterable/sbt-codeartifact")),
licenses := Seq("MIT" -> url("https://choosealicense.com/licenses/mit/")),
version := "0.1.0"
ThisBuild / organization := "com.iterable"
ThisBuild / organizationName := "Iterable"
ThisBuild / organizationHomepage := Some(url("https://iterable.com"))

ThisBuild / description := "A plugin for authenticating with AWS CodeArtifact"
ThisBuild / licenses := Seq("MIT" -> url("https://opensource.org/licenses/MIT"))
ThisBuild / homepage := Some(url("https://github.com/Iterable/sbt-codeartifact"))
ThisBuild / version := "0.1.0"

ThisBuild / developers := List(
Developer(
"douglasthomsen",
"Douglas Thomsen",
"[email protected]",
url("https://github.com/douglasthomsen")
)
)

ThisBuild / scmInfo := Some(
ScmInfo(
url("https://github.com/Iterable/sbt-codeartifact"),
"scm:[email protected]:Iterable/sbt-codeartifact.git"
)
)
lazy val testSettings: Seq[Setting[_]] = Seq(
scriptedLaunchOpts := {
scriptedLaunchOpts.value ++ Seq(
Expand Down

0 comments on commit 34ca03b

Please sign in to comment.