This repository has been archived by the owner on May 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.sbt
57 lines (40 loc) · 1.42 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
48
49
50
51
52
53
54
55
56
57
name := "SpeechRecognitionHMM"
version := "0.1.0-SNAPSHOT"
organization := "de.sciss"
description := "Speech Recognition using VQ and HMM"
homepage := Some(url("https://github.com/Sciss/" + name.value))
licenses := Seq("Apache 2.0 License" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt"))
scalaVersion := "2.11.6"
crossPaths := false // this is just a Java project right now!
autoScalaLibrary := false
mainClass in Compile := Some("org.ioe.tprsa.ui.HMM_VQ_Speech_Recognition")
javacOptions in (Compile, compile) ++= Seq("-g", "-source", "1.6", "-target", "1.6")
fork in run := true
// ---- publishing ----
publishMavenStyle := true
publishTo :=
Some(if (isSnapshot.value)
"Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
else
"Sonatype Releases" at "https://oss.sonatype.org/service/local/staging/deploy/maven2"
)
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
pomExtra := { val n = name.value
<scm>
<url>git@github.com:Sciss/{n}.git</url>
<connection>scm:git:git@github.com:Sciss/{n}.git</connection>
</scm>
<developers>
<developer>
<id>gtiwari333</id>
<name>Ganesh Tiwari</name>
<url>http://ganeshtiwaridotcomdotnp.blogspot.com</url>
</developer>
<developer>
<id>sciss</id>
<name>Hanns Holger Rutz</name>
<url>http://www.sciss.de</url>
</developer>
</developers>
}