Skip to content

Commit e882234

Browse files
committed
Add publishing info
1 parent fc5c298 commit e882234

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

build.sbt

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,31 @@ inThisBuild(
55
List(
66
scalaVersion := scala213,
77
crossScalaVersions := List(scala213),
8-
organization := "com.sourcegraph",
98
scalafixDependencies +=
109
"com.github.liancheng" %% "organize-imports" % "0.5.0",
1110
scalafixCaching := true,
1211
scalacOptions ++= List("-Wunused:imports"),
1312
semanticdbEnabled := true,
14-
semanticdbVersion := scalametaVersion
13+
semanticdbVersion := scalametaVersion,
14+
organization := "com.sourcegraph",
15+
homepage := Some(url("https://github.com/sourcegraph/lsif-java")),
16+
licenses := List(
17+
"Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")
18+
),
19+
developers := List(
20+
Developer(
21+
"olafurpg",
22+
"Ólafur Páll Geirsson",
23+
24+
url("https://github.com/olafurpg")
25+
),
26+
Developer(
27+
"Strum355",
28+
"Noah Santschi-Cooney",
29+
30+
url("https://github.com/Strum355")
31+
)
32+
)
1533
)
1634
)
1735

0 commit comments

Comments
 (0)