mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 05:22:23 +00:00
bc5e031cee
Signed-off-by: Alexander Bezzubov <bzz@apache.org>
71 lines
2.4 KiB
Scala
71 lines
2.4 KiB
Scala
name := "enry-java"
|
|
organization := "tech.sourced"
|
|
|
|
git.useGitDescribe := true
|
|
enablePlugins(GitVersioning)
|
|
|
|
sonatypeProfileName := "tech.sourced"
|
|
|
|
// pom settings for sonatype
|
|
homepage := Some(url("https://github.com/bzz/enry"))
|
|
scmInfo := Some(ScmInfo(url("https://github.com/bzz/enry"),
|
|
"git@github.com:src-d/enry.git"))
|
|
developers += Developer("abeaumont",
|
|
"Alfredo Beaumont",
|
|
"alfredo@sourced.tech",
|
|
url("https://github.com/abeaumont"))
|
|
developers += Developer("bzz",
|
|
"Alexander Bezzubov",
|
|
"alex@sourced.tech",
|
|
url("https://github.com/bzz"))
|
|
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0"))
|
|
pomIncludeRepository := (_ => false)
|
|
|
|
crossPaths := false
|
|
autoScalaLibrary := false
|
|
publishMavenStyle := true
|
|
exportJars := true
|
|
|
|
val SONATYPE_USERNAME = scala.util.Properties.envOrElse("SONATYPE_USERNAME", "NOT_SET")
|
|
val SONATYPE_PASSWORD = scala.util.Properties.envOrElse("SONATYPE_PASSWORD", "NOT_SET")
|
|
credentials += Credentials(
|
|
"Sonatype Nexus Repository Manager",
|
|
"oss.sonatype.org",
|
|
SONATYPE_USERNAME,
|
|
SONATYPE_PASSWORD)
|
|
|
|
val SONATYPE_PASSPHRASE = scala.util.Properties.envOrElse("SONATYPE_PASSPHRASE", "not set")
|
|
|
|
useGpg := false
|
|
pgpSecretRing := baseDirectory.value / "project" / ".gnupg" / "secring.gpg"
|
|
pgpPublicRing := baseDirectory.value / "project" / ".gnupg" / "pubring.gpg"
|
|
pgpPassphrase := Some(SONATYPE_PASSPHRASE.toArray)
|
|
|
|
libraryDependencies += "com.nativelibs4java" % "jnaerator-runtime" % "0.12"
|
|
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % Test
|
|
|
|
unmanagedBase := baseDirectory.value / "lib"
|
|
unmanagedClasspath in Test += baseDirectory.value / "shared"
|
|
unmanagedClasspath in Runtime += baseDirectory.value / "shared"
|
|
unmanagedClasspath in Compile += baseDirectory.value / "shared"
|
|
testOptions += Tests.Argument(TestFrameworks.JUnit)
|
|
|
|
publishArtifact in (Compile, packageBin) := false
|
|
|
|
artifact in (Compile, assembly) := {
|
|
val art = (artifact in (Compile, assembly)).value
|
|
art.copy(`classifier` = None)
|
|
}
|
|
|
|
addArtifact(artifact in (Compile, assembly), assembly)
|
|
|
|
isSnapshot := version.value endsWith "SNAPSHOT"
|
|
|
|
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")
|
|
}
|