-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
56 lines (44 loc) · 1.77 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name:= "HL7-PET"
//githubOwner := "cdc.gov"
//githubRepository := "HL7-PET"
//githubTokenSource := TokenSource.Environment("GITHUB_TOKEN")
organization:= "gov.cdc.hl7"
organizationName:= "CDC"
//scmInfo:= Some (
// ScmInfo(
// url("https://github.com/cdcent/hl7-pet"),
// "scm:[email protected]/cdcent/hl7-pet.git"
// )
//)
developers := List(
Developer(
id="mcq1",
name="Marcelo Caldas",
email = "[email protected]",
url = url ("https://github.com/cdcent/hl7-pet")
)
)
description := "This project is a library to Parse HL7 v2 messages"
licenses := List("Apache 2" -> new URL("http://www.apache.org/licenses/LICENSE-2.0.txt"))
homepage := Some(url("https://github.com/cdcent/hl7-pet"))
pomIncludeRepository := { _ => false }
publishMavenStyle := true
version := "1.2.10"
scalaVersion := "2.13.10"
//scalaVersion := "2.12.10"
mainClass := Some("gov.cdc.hl7pet.DeIdentifierApp")
// https://mvnrepository.com/artifact/org.scalatest/scalatest
libraryDependencies += "org.scalactic" %% "scalactic" % "3.2.18"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.18" % Test
libraryDependencies += "com.fasterxml.jackson.core" % "jackson-databind" % "2.17.0"
libraryDependencies += "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.17.0"
// https://mvnrepository.com/artifact/com.fasterxml.jackson.module/jackson-modules-base
libraryDependencies += "com.fasterxml.jackson.module" % "jackson-modules-base" % "2.17.1" pomOnly()
// https://mvnrepository.com/artifact/com.google.code.gson/gson
libraryDependencies += "com.google.code.gson" % "gson" % "2.10.1"
//assemblyMergeStrategy in assembly := {
// case PathList("META-INF", xs @ _*) => MergeStrategy.discard
// case x => MergeStrategy.first
//}
crossPaths:= true
publishArtifact in (Compile, packageSrc) := true