-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
63 lines (44 loc) · 1.89 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
57
58
59
60
61
62
name := "daffodil-calabash-extension"
version := "0.5.0"
organization := "edu.illionois.ncsa"
startYear := Some(2013)
description := "An extension to Calabash that adds dfdl:parse and dfdl:parse-file XProc steps, which in turn call Daffodil."
licenses := Seq("University of Illinois/NCSA Open Source License" -> url("http://opensource.org/licenses/UoI-NCSA.php"))
scalaVersion := "2.10.4"
libraryDependencies += ("edu.illinois.ncsa" %% "daffodil-core" % "1.0.0"
exclude("com.novocode", "junit-interface")
excludeAll(ExclusionRule(name = "jline"))
exclude("net.sourceforge.expectj", "expectj")
exclude("org.rogach", "scallop_2.10")
exclude("org.scala-tools.testing", "test-interface")
)
libraryDependencies += ("edu.illinois.ncsa" %% "daffodil-lib" % "1.0.0"
exclude("com.novocode", "junit-interface")
excludeAll(ExclusionRule(name = "jline"))
exclude("net.sourceforge.expectj", "expectj")
exclude("org.rogach", "scallop_2.10")
exclude("org.scala-tools.testing", "test-interface")
)
libraryDependencies ++= Seq(
"commons-logging" % "commons-logging" % "1.1.+"
, "commons-codec" % "commons-codec" % "1.6"
, "commons-io" % "commons-io" % "2.4"
, "net.sf.saxon" % "Saxon-HE" % "9.6.0-1"
)
scalacOptions += "-feature"
// retrieve dependencies to lib_managed for convenience when running
// from the command-line
retrieveManaged := true
resolvers += ("NCSA Sonatype Releases"
at "https://opensource.ncsa.illinois.edu/nexus/content/repositories/releases"
)
resolvers += ("NCSA Sonatype Snapshots"
at "https://opensource.ncsa.illinois.edu/nexus/content/repositories/snapshots"
)
///////////////////////////
// eclipse plugin settings
// download source artifacts and create Eclipse source attachments for
// library dependencies
EclipseKeys.withSource := true
// Add resources directories to .classpath
//EclipseKeys.createSrc := EclipseCreateSrc.Default + EclipseCreateSrc.Resource