-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore[release]: this is getting frustrating
- Loading branch information
1 parent
19b79d5
commit 16c2bf8
Showing
2 changed files
with
18 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
inThisBuild( | ||
List( | ||
name:= "HL7-PET", | ||
organization := "gov.cdc", | ||
homepage := Some(url("https://github.com/cdcent/hl7-pet")), | ||
organization := "gov.cdc.hl7", | ||
homepage := Some(url("https://github.com/cdcgov/hl7-pet")), | ||
description := "This project is a library to Parse HL7 v2 messages", | ||
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")), | ||
scmInfo:= Some ( | ||
|
@@ -16,12 +16,24 @@ inThisBuild( | |
id="mcq1", | ||
name="Marcelo Caldas", | ||
email = "[email protected]", | ||
url = url ("https://github.com/cdcent/hl7-pet") | ||
url = url ("https://github.com/cdcgov/hl7-pet") | ||
) | ||
) | ||
) | ||
) | ||
|
||
mainClass := Some("gov.cdc.hl7pet.DeIdentifierApp") | ||
Global / excludeLintKeys += mainClass | ||
|
||
libraryDependencies += "org.scalactic" %% "scalactic" % "3.2.14" | ||
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.14" % "test" | ||
libraryDependencies += "org.scalatest" %% "scalatest-flatspec" % "3.2.14" % Test | ||
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.14" % Test | ||
libraryDependencies += "com.fasterxml.jackson.core" % "jackson-databind" % "2.14.0" | ||
libraryDependencies += "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.17.0" | ||
libraryDependencies += "com.fasterxml.jackson.module" % "jackson-modules-base" % "2.17.0" pomOnly() | ||
libraryDependencies += "com.google.code.gson" % "gson" % "2.10.1" | ||
|
||
onLoadMessage := s"Welcome to sbt-ci-release ${version.value}" | ||
|
||
lazy val plugin = project | ||
|