Skip to content

Commit

Permalink
Update inox (#1587)
Browse files Browse the repository at this point in the history
* update inox
* exclude dependencies to compile
* exclude scala xml 3 and not 2.13

---------

Co-authored-by: Viktor Kunčak <[email protected]>
  • Loading branch information
samuelchassot and vkuncak authored Oct 28, 2024
1 parent e2d66f5 commit 2024a36
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
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_3",
"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 2024a36

Please sign in to comment.