From bd1c521516f52307a75a193ad6b68f5641bccfc1 Mon Sep 17 00:00:00 2001 From: Boris Ning Date: Fri, 6 Sep 2024 14:25:35 -0400 Subject: [PATCH] chore[release]: trying to fix compilation --- build.sbt | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/build.sbt b/build.sbt index 8b31df7..7a3e7a0 100644 --- a/build.sbt +++ b/build.sbt @@ -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")), @@ -22,6 +23,11 @@ inThisBuild( ) ) +publishMavenStyle := true + +version := "1.2.10" +scalaVersion := "2.13.13" + mainClass := Some("gov.cdc.hl7pet.DeIdentifierApp") Global / excludeLintKeys += mainClass @@ -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