Skip to content

Commit

Permalink
missing information
Browse files Browse the repository at this point in the history
  • Loading branch information
pruemmer committed Mar 22, 2024
1 parent a112e5c commit 84e21cb
Showing 1 changed file with 45 additions and 3 deletions.
48 changes: 45 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down

0 comments on commit 84e21cb

Please sign in to comment.