forked from codacy/codacy-plugins-api
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
54 lines (38 loc) · 1.44 KB
/
build.sbt
File metadata and controls
54 lines (38 loc) · 1.44 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
name := """codacy-plugins-api"""
version := "1.0.0-SNAPSHOT"
scalaVersion := "2.11.12"
crossScalaVersions := Seq(scalaVersion.value, "2.12.4")
organization := "com.codacy"
libraryDependencies += "org.specs2" %% "specs2-core" % "4.0.2" % Test
organizationName := "Codacy"
organizationHomepage := Some(new URL("https://www.codacy.com"))
publishMavenStyle := true
publishArtifact in Test := false
pomIncludeRepository := { _ =>
false
}
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (version.value.trim.endsWith("SNAPSHOT"))
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
startYear := Some(2016)
description := "Library to develop Codacy tool plugins"
licenses := Seq("The Apache Software License, Version 2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt"))
homepage := Some(url("https://github.com/codacy/codacy-plugins-api"))
pomExtra :=
<scm>
<url>https://github.com/codacy/codacy-plugins-api</url>
<connection>scm:git:git@github.com:codacy/codacy-engine-scala-seed.git</connection>
<developerConnection>scm:git:https://github.com/codacy/codacy-plugins-api.git</developerConnection>
</scm>
<developers>
<developer>
<id>johannegger</id>
<name>Johann</name>
<email>johann [at] codacy.com</email>
<url>https://github.com/johannegger</url>
</developer>
</developers>