-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
45 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,18 +5,60 @@ lazy val commonSettings = Seq( | |
version := "2.1", | ||
homepage := Some(url("https://github.com/uuverifiers/eldarica")), | ||
licenses := Seq("BSD License 2.0" -> url("https://github.com/uuverifiers/eldarica/blob/master/LICENSE")), | ||
scmInfo := Some(ScmInfo( | ||
url("https://github.com/uuverifiers/eldarica"), | ||
"scm:[email protected]/uuverifiers/eldarica.git")), | ||
developers := List( | ||
Developer( | ||
id = "hhojjat", | ||
name = "Hossein Hojjat", | ||
email = "[email protected]", | ||
url = url("https://cs.rit.edu/~hh/") | ||
), | ||
Developer( | ||
id = "pruemmer", | ||
name = "Philipp Ruemmer", | ||
email = "[email protected]", | ||
url = url("https://philipp.ruemmer.org") | ||
), | ||
Developer( | ||
id = "zafer.esen", | ||
name = "Zafer Esen", | ||
email = "[email protected]", | ||
url = url("https://katalog.uu.se/empinfo/?id=N18-2424") | ||
), | ||
Developer( | ||
id = "filipkonecny", | ||
name = "Filip Konecny", | ||
email = "[email protected]", | ||
url = url("https://github.com/filipkonecny") | ||
), | ||
Developer( | ||
id = "psubotic", | ||
name = "Pavle Subotic", | ||
email = "[email protected]", | ||
url = url("https://psubotic.github.io/") | ||
), | ||
Developer( | ||
id = "sankalpgambhir", | ||
name = "Gambhir Sankalp", | ||
email = "[email protected]", | ||
url = url("https://sankalp.gambhir.gg/") | ||
) | ||
), | ||
description := "Eldarica is an SMT solver for systems of Constrained Horn Clauses (CHC).", | ||
scalaVersion := "2.11.12", | ||
crossScalaVersions := Seq("2.11.12", "2.12.18"), | ||
run / fork := true, | ||
cancelable in Global := true, | ||
publishTo := Some(Resolver.file("file", new File( "/home/wv/public_html/maven/" )) ) | ||
publishTo := Some(Resolver.file("file", new File( "/home/compilation/public_html/maven/" )) ) | ||
) | ||
|
||
// Jar files for the parsers | ||
|
||
lazy val parserSettings = Seq( | ||
packageDoc / publishArtifact := false, | ||
packageSrc / publishArtifact := false, | ||
// packageDoc / publishArtifact := false, | ||
// packageSrc / publishArtifact := false, | ||
exportJars := true, | ||
crossPaths := true | ||
) | ||
|