Skip to content

Commit

Permalink
exclude dependencies to compile
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelchassot committed Oct 10, 2024
1 parent cc4ac5d commit 03e7d57
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@ lazy val artifactSettings: Seq[Setting[_]] = baseSettings ++ Seq(
buildInfoPackage := "stainless",
buildInfoKeys := stainlessBuildInfoKeys,
buildInfoOptions := Seq(BuildInfoOption.BuildTime),
excludeDependencies ++= Seq(
"org.scala-lang.modules" % "scala-parser-combinators_2.13",
"org.scala-lang.modules" % "scala-xml_2.13",
"org.scalactic" % "scalactic_2.13",
),

)

lazy val commonSettings: Seq[Setting[_]] = artifactSettings ++ Seq(
Expand All @@ -88,7 +94,7 @@ lazy val commonSettings: Seq[Setting[_]] = artifactSettings ++ Seq(
),

resolvers ++= Resolver.sonatypeOssRepos("releases"),
resolvers += ("uuverifiers" at "http://logicrunch.research.it.uu.se/maven").withAllowInsecureProtocol(true),
resolvers += ("uuverifiersStainless" at "https://eldarica.org/maven"),

libraryDependencies ++= Seq(
// "ch.epfl.lara" %% "inox" % inoxVersion,
Expand Down

0 comments on commit 03e7d57

Please sign in to comment.