Skip to content

Commit

Permalink
chore[release]: trying to fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
boris-ning-usds committed Sep 6, 2024
1 parent 16c2bf8 commit bd1c521
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ inThisBuild(
List(
name:= "HL7-PET",
organization := "gov.cdc.hl7",
organizationName:= "CDC",
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")),
Expand All @@ -22,6 +23,11 @@ inThisBuild(
)
)

publishMavenStyle := true

version := "1.2.10"
scalaVersion := "2.13.13"

mainClass := Some("gov.cdc.hl7pet.DeIdentifierApp")
Global / excludeLintKeys += mainClass

Expand All @@ -34,6 +40,10 @@ libraryDependencies += "com.fasterxml.jackson.module" %% "jackson-module-scala"
libraryDependencies += "com.fasterxml.jackson.module" % "jackson-modules-base" % "2.17.0" pomOnly()
libraryDependencies += "com.google.code.gson" % "gson" % "2.10.1"

crossPaths:= true

publishArtifact in (Compile, packageSrc) := true

onLoadMessage := s"Welcome to sbt-ci-release ${version.value}"

lazy val plugin = project
Expand Down

0 comments on commit bd1c521

Please sign in to comment.