-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
44 lines (38 loc) · 1.39 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
organization := "com.audienceproject"
name := "crossbow"
version := "0.2.1"
scalaVersion := "3.3.4"
scalacOptions ++= Seq("-deprecation", "-feature", "-language:implicitConversions")
libraryDependencies += "org.scalatest" %% "scalatest-funsuite" % "3.2.17" % "test"
/**
* Maven specific settings for publishing to Maven central.
*/
publishMavenStyle := true
Test / publishArtifact := false
pomIncludeRepository := { _ => false }
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value) Some("snapshots" at nexus + "content/repositories/snapshots")
else Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
pomExtra := <url>https://github.com/audienceproject/crossbow</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<scm>
<url>[email protected]:audienceproject/crossbow.git</url>
<connection>scm:git:git//github.com/audienceproject/crossbow.git</connection>
<developerConnection>scm:git:ssh://github.com:audienceproject/crossbow.git</developerConnection>
</scm>
<developers>
<developer>
<id>jacobfi</id>
<name>Jacob Fischer</name>
<email>[email protected]</email>
<organization>AudienceProject</organization>
<organizationUrl>https://www.audienceproject.com</organizationUrl>
</developer>
</developers>