-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
28 lines (23 loc) · 1.46 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
// gallia-macros
// ===========================================================================
lazy val root = (project in file("."))
.settings(
organizationName := "Gallia Project",
organization := "io.github.galliaproject", // *must* match groupId for sonatype
name := "gallia-macros",
version := GalliaCommonSettings.CurrentGalliaVersion,
homepage := Some(url("https://github.com/galliaproject/gallia-macros")),
scmInfo := Some(ScmInfo(
browseUrl = url("https://github.com/galliaproject/gallia-macros"),
connection = "scm:[email protected]:galliaproject/gallia-macros.git")),
licenses := Seq("Apache 2" -> url("https://github.com/galliaproject/gallia-macros/blob/master/LICENSE")),
description := "A Scala library for data manipulation" )
.settings(GalliaCommonSettings.mainSettings:_*)
// ===========================================================================
libraryDependencies += "io.github.galliaproject" %% "gallia-core" % GalliaCommonSettings.CurrentGalliaVersion
// ===========================================================================
sonatypeRepository := "https://s01.oss.sonatype.org/service/local"
sonatypeCredentialHost := "s01.oss.sonatype.org"
publishMavenStyle := true
publishTo := sonatypePublishToBundle.value
// ===========================================================================