Skip to content

Commit

Permalink
chore[release]: this is getting frustrating
Browse files Browse the repository at this point in the history
  • Loading branch information
boris-ning-usds committed Sep 6, 2024
1 parent 19b79d5 commit 16c2bf8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ jobs:
- name: Setup JDK And SBT
uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 8
java-version: '11'
distribution: 'adopt'
cache: sbt

- name: Publish to Maven Repository
run: sbt ci-release
Expand Down
18 changes: 15 additions & 3 deletions build.sbt
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 (
Expand All @@ -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
Expand Down

0 comments on commit 16c2bf8

Please sign in to comment.