-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.sbt
47 lines (43 loc) · 2.36 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* This file is part of the scala-tptp-parser library. See README.md and LICENSE.txt in root directory for more information. */
lazy val tptpParser = (project in file("."))
.settings(
organization := "io.github.leoprover",
name := "scala-tptp-parser",
homepage := Some(url("https://github.com/leoprover/scala-tptp-parser")),
description := """scala-tptp-parser is a library for parsing the input languages of the TPTP infrastructure
| for knowledge representation and reasoning.
|
| The package contains a data structure for the abstract syntax tree (AST) of the parsed input as well
| as the parser for the different language of the TPTP, see http://tptp.org for details. In particular,
| parser are available for:
| - THF (TH0/TH1): Monomorphic and polymorphic higher-order logic,
| - TFF (TF0/TF1): Monomorphic and polymorphic typed first-order logic, including extended TFF (TFX),
| - FOF: Untyped first-order logic,
| - TCF: Typed clause-normal form,
| - CNF: (Untyped) clause-normal form, and
| - TPI: TPTP Process Instruction language.
|
| The parser was initially based on v7.4.0.3 of the TPTP syntax BNF (http://tptp.org/TPTP/SyntaxBNF.html),
| but is continuously updated to keep track of TPTP language updates.""".stripMargin,
scalaVersion := "2.13.14",
// Version number explicitly removed as this is handled by the release plugin
scmInfo := Some(ScmInfo(
browseUrl = url("https://github.com/leoprover/scala-tptp-parser"),
connection = "scm:git:[email protected]:leoprover/scala-tptp-parser.git"
)),
developers := List(
Developer(
"lex-lex",
"Alexander Steen",
url("https://www.alexandersteen.de/")
)
),
licenses += "MIT" -> url("https://opensource.org/licenses/MIT"),
sonatypeCredentialHost := "s01.oss.sonatype.org",
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % "test",
Compile / doc / scalacOptions ++= Seq(
"-doc-title", "Scala TPTP parser",
"-doc-root-content", (Compile / resourceDirectory).value + "/rootdoc.txt"
)
)