-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
82 lines (67 loc) · 2.56 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// started with the chisel template from:
// https://github.com/freechipsproject/chisel-template
//
def scalacOptionsVersion(scalaVersion: String): Seq[String] = {
Seq() ++ {
// If we're building with Scala > 2.11, enable the compile option
// switch to support our anonymous Bundle definitions:
// https://github.com/scala/bug/issues/10047
CrossVersion.partialVersion(scalaVersion) match {
case Some((2, scalaMajor: Long)) if scalaMajor < 12 => Seq()
case _ => Seq("-Xsource:2.11")
}
}
}
def javacOptionsVersion(scalaVersion: String): Seq[String] = {
Seq() ++ {
// Scala 2.12 requires Java 8. We continue to generate
// Java 7 compatible code for Scala 2.11
// for compatibility with old clients.
CrossVersion.partialVersion(scalaVersion) match {
case Some((2, scalaMajor: Long)) if scalaMajor < 12 =>
Seq("-source", "1.7", "-target", "1.7")
case _ =>
Seq("-source", "1.8", "-target", "1.8")
}
}
}
name := "aes_chisel"
version := "3.2.0"
scalaVersion := "2.11.12"
crossScalaVersions := Seq("2.11.12", "2.12.4")
resolvers ++= Seq(
Resolver.sonatypeRepo("snapshots"),
Resolver.sonatypeRepo("releases")
)
// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
val defaultVersions = Map(
"chisel3" -> "3.1.+",
"chisel-iotesters" -> "1.2.+"
)
libraryDependencies ++= Seq("chisel3", "chisel-iotesters").map {
dep: String => "edu.berkeley.cs" %% dep % sys.props.getOrElse(dep + "Version", defaultVersions(dep))
}
scalacOptions ++= scalacOptionsVersion(scalaVersion.value)
//scalacOptions += "-feature"
//scalacOptions += "-deprecation"
javacOptions ++= javacOptionsVersion(scalaVersion.value)
// POM settings for Sonatype
// Sonatype Username: smosanu (same as github username)
// Full name: Sergiu Mosanu
organization := "com.github.hplp"
organizationName := "hplp"
homepage := Some(url("http://hplp.ece.virginia.edu/home"))
scmInfo := Some(ScmInfo(url("https://github.com/hplp/aes_chisel"), "[email protected]:hplp/aes_chisel.git"))
developers := List(Developer("smosanu", "Sergiu Mosanu", "[email protected]", url("https://github.com/smosanu")))
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0"))
publishMavenStyle := true
publishConfiguration := publishConfiguration.value.withOverwrite(true)
publishLocalConfiguration := publishLocalConfiguration.value.withOverwrite(true)
// Add sonatype repository settings
publishTo := Some(
if (isSnapshot.value)
Opts.resolver.sonatypeSnapshots
else
Opts.resolver.sonatypeStaging
)
pgpReadOnly := false