Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lisa
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LARA
lisa
Merge requests
!53
Front integration
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Front integration
github/fork/SimonGuilloud/front-integration
into
front-integration
Overview
0
Commits
54
Pipelines
0
Changes
1
Merged
Viktor Kuncak
requested to merge
github/fork/SimonGuilloud/front-integration
into
front-integration
2 years ago
Overview
0
Commits
54
Pipelines
0
Changes
1
Expand
Created by: SimonGuilloud
0
0
Merge request reports
Viewing commit
04aad4c8
Prev
Next
Show latest version
1 file
+
29
−
27
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
04aad4c8
Format build.sbt
· 04aad4c8
Katja Goltsova
authored
2 years ago
build.sbt
+
29
−
27
Options
inThisBuild
(
Def
.
settings
(
organization
:=
"ch.epfl.lara"
,
organizationName
:=
"LARA"
,
organizationHomepage
:=
Some
(
url
(
"https://lara.epfl.ch"
)),
licenses
:=
Seq
(
"Apache-2.0"
->
url
(
"https://www.apache.org/licenses/LICENSE-2.0.html"
)),
versionScheme
:=
Some
(
"semver-spec"
),
scalacOptions
++=
Seq
(
"-feature"
,
"-deprecation"
,
"-unchecked"
,
),
semanticdbEnabled
:=
true
,
semanticdbVersion
:=
scalafixSemanticdb
.
revision
,
scalafixDependencies
+=
"com.github.liancheng"
%%
"organize-imports"
%
"0.6.0"
))
inThisBuild
(
Def
.
settings
(
organization
:=
"ch.epfl.lara"
,
organizationName
:=
"LARA"
,
organizationHomepage
:=
Some
(
url
(
"https://lara.epfl.ch"
)),
licenses
:=
Seq
(
"Apache-2.0"
->
url
(
"https://www.apache.org/licenses/LICENSE-2.0.html"
)),
versionScheme
:=
Some
(
"semver-spec"
),
scalacOptions
++=
Seq
(
"-feature"
,
"-deprecation"
,
"-unchecked"
),
semanticdbEnabled
:=
true
,
semanticdbVersion
:=
scalafixSemanticdb
.
revision
,
scalafixDependencies
+=
"com.github.liancheng"
%%
"organize-imports"
%
"0.6.0"
)
)
val
scala2
=
"2.13.8"
val
scala3
=
"3.1.3"
val
commonSettings2
=
Seq
(
scalaVersion
:=
scala2
,
scalaVersion
:=
scala2
)
val
commonSettings3
=
Seq
(
scalaVersion
:=
scala3
,
scalacOptions
++=
Seq
(
"-language:implicitConversions"
,
//"-source:future", re-enable when liancheng/scalafix-organize-imports#221 is fixed
//
"-source:future", re-enable when liancheng/scalafix-organize-imports#221 is fixed
"-old-syntax"
,
"-no-indent"
,
"-no-indent"
),
libraryDependencies
+=
"org.scalatest"
%%
"scalatest"
%
"3.2.10"
%
"test"
,
Test
/
parallelExecution
:=
false
,
Test
/
parallelExecution
:=
false
)
def
withTests
(
project
:
Project
)
:
ClasspathDependency
=
@@ -37,18 +39,18 @@ def withTests(project: Project): ClasspathDependency =
lazy
val
root
=
Project
(
id
=
"lisa"
,
base
=
file
(
"."
)
,
base
=
file
(
"."
)
)
.
settings
(
commonSettings3
)
.
settings
(
version
:=
"0.1"
,
version
:=
"0.1"
)
.
dependsOn
(
kernel
,
withTests
(
utils
),
theories
,
tptp
)
// Everything but `examples`
.
aggregate
(
kernel
,
utils
,
theories
,
tptp
)
// To run tests on all modules
lazy
val
kernel
=
Project
(
id
=
"lisa-kernel"
,
base
=
file
(
"lisa-kernel"
)
,
base
=
file
(
"lisa-kernel"
)
)
.
settings
(
commonSettings2
)
.
settings
(
@@ -57,31 +59,31 @@ lazy val kernel = Project(
lazy
val
utils
=
Project
(
id
=
"lisa-utils"
,
base
=
file
(
"lisa-utils"
)
,
base
=
file
(
"lisa-utils"
)
)
.
settings
(
commonSettings3
)
.
dependsOn
(
kernel
)
lazy
val
theories
=
Project
(
id
=
"lisa-theories"
,
base
=
file
(
"lisa-theories"
)
,
base
=
file
(
"lisa-theories"
)
)
.
settings
(
commonSettings3
)
.
dependsOn
(
withTests
(
utils
))
lazy
val
tptp
=
Project
(
id
=
"lisa-tptp"
,
base
=
file
(
"lisa-tptp"
)
,
base
=
file
(
"lisa-tptp"
)
)
.
settings
(
commonSettings3
)
.
settings
(
libraryDependencies
+=
"io.github.leoprover"
%
"scala-tptp-parser_2.13"
%
"1.4"
,
libraryDependencies
+=
"io.github.leoprover"
%
"scala-tptp-parser_2.13"
%
"1.4"
)
.
dependsOn
(
withTests
(
utils
))
lazy
val
examples
=
Project
(
id
=
"lisa-examples"
,
base
=
file
(
"lisa-examples"
)
,
base
=
file
(
"lisa-examples"
)
)
.
settings
(
commonSettings3
)
.
dependsOn
(
root
)
Loading