Ai
2 Star 0 Fork 0

cockroachdb/finagle-postgres

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.sbt 1.52 KB
一键复制 编辑 原始数据 按行查看 历史
Vladimir Kostyukov 提交于 2015-10-14 14:37 +08:00 . Prepare for the 0.1.0 release
lazy val buildSettings = Seq(
organization := "com.github.finagle",
version := "0.1.0",
scalaVersion := "2.11.7",
crossScalaVersions := Seq("2.10.5", "2.11.7")
)
val baseSettings = Seq(
libraryDependencies ++= Seq(
"com.twitter" %% "finagle-core" % "6.29.0",
"junit" % "junit" % "4.7" % "test,it",
"org.scalatest" %% "scalatest" % "2.2.5" % "test,it",
"org.mockito" % "mockito-all" % "1.9.5" % "test,it"
)
)
lazy val publishSettings = Seq(
publishMavenStyle := true,
publishArtifact := true,
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")
},
publishArtifact in Test := false,
licenses := Seq("Apache 2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
homepage := Some(url("https://github.com/finagle/finagle-oauth2")),
autoAPIMappings := true,
scmInfo := Some(
ScmInfo(
url("https://github.com/finagle/finagle-postgres"),
"scm:git:git@github.com:finagle/finagle-postgres.git"
)
),
pomExtra :=
<developers>
<developer>
<id>finagle</id>
<name>Finagle OSS</name>
<url>https://twitter.com/finagle</url>
</developer>
</developers>
)
lazy val allSettings = baseSettings ++ buildSettings ++ publishSettings
lazy val root = project.in(file("."))
.settings(moduleName := "finagle-postgres")
.settings(allSettings)
.configs(IntegrationTest)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_cockroachdb/finagle-postgres.git
git@gitee.com:mirrors_cockroachdb/finagle-postgres.git
mirrors_cockroachdb
finagle-postgres
finagle-postgres
master

搜索帮助