-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
56 lines (29 loc) · 1.49 KB
/
Copy pathbuild.sbt
File metadata and controls
56 lines (29 loc) · 1.49 KB
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
48
49
50
51
52
53
54
import sbtsonar.SonarPlugin.autoImport.sonarProperties
name := "scala_project"
version := "0.1"
scalaVersion := "2.12.4"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.1" % "test"
libraryDependencies += "com.github.mifmif" % "generex" % "1.0.2"
libraryDependencies += "it.unibo.alice.tuprolog" % "tuprolog" % "3.1"
resolvers += "Sonatype Releases" at "https://oss.sonatype.org/content/repositories/releases/"
// library dependencies for using logback
libraryDependencies ++= Seq(
"ch.qos.logback" % "logback-classic" % "1.2.3" % Test,
"org.clapper" %% "grizzled-slf4j" % "1.3.2")
// setting main class
mainClass in (Compile, run) := Some("Main")
libraryDependencies += "org.scalanlp" %% "breeze" % "0.13.2"
libraryDependencies+="com.typesafe" % "config" % "1.3.2"
libraryDependencies += "org.eclipse.jdt" % "org.eclipse.jdt.core" % "3.15.0"
dependencyOverrides += "org.eclipse.platform" % "org.eclipse.equinox.app" % "1.3.600"
libraryDependencies += "io.grpc" % "grpc-netty" % "1.9.0"
sonarProperties ++= Map(
"sonar.projectName" -> "ProGen",
"sonar.projectKey" -> "pro-gen",
"sonar.sources" -> "src/main/scala",
"sonar.tests" -> "src/test/scala",
"sonar.scoverage.reportPath" -> "target/scala-2.12/scoverage-report/scoverage.xml",
"sonar.scala.scapegoat.reportPath" -> "target/scala-2.12/scapegoat-report/scapegoat.xml"
)
// https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
libraryDependencies += "org.apache.commons" % "commons-lang3" % "3.0"