Skip to content

Commit

Permalink
update executable name to vercors1 for installation alongside vercors 2
Browse files Browse the repository at this point in the history
  • Loading branch information
pieter-bos committed Apr 2, 2024
1 parent 130b5e5 commit d1fa608
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ lazy val vercors: Project = (project in file("."))
.dependsOn(hre, col, viper_api, parsers)
.aggregate(hre, col, viper_api, parsers)
.settings(
name := "Vercors",
name := "Vercors1",
organization := "University of Twente",
version := "1.4.0-SNAPSHOT",
version := "1.4.1-SNAPSHOT",
maintainer := "VerCors Team <vercors@lists.utwente.nl>",
packageSummary := "A tool for static verification of parallel programs",
packageDescription :=
Expand Down Expand Up @@ -155,7 +155,7 @@ lazy val vercors: Project = (project in file("."))
scriptClasspath := Seq("*", "../res"),

// Force the main classes, as we have some extra main classes that we don't want to generate run scripts for.
Compile / discoveredMainClasses := Seq("vct.main.Vercors","vct.main.Alpinist"),
Compile / discoveredMainClasses := Seq("vct.main.Vercors1","vct.main.Alpinist"),
// Compile / mainClass := Some("vct.main.Main"),

// Add options to run scripts produced by sbt-native-packager. See: https://www.scala-sbt.org/sbt-native-packager/archetypes/java_app/customize.html#via-build-sbt
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package vct.main

object Vercors {
object Vercors1 {
def main(args: Array[String]): Unit = Main.main(args)
}

0 comments on commit d1fa608

Please sign in to comment.