1 Star 0 Fork 0

RV少年 (RV4Kids) / testchipip

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.sbt 1.07 KB
AI 代码解读
一键复制 编辑 原始数据 按行查看 历史
abejgonzalez 提交于 2020-11-30 21:20 . Cleanup build.sbt | Bump versions
organization := "edu.berkeley.cs"
version := "1.0-SNAPSHOT"
name := "testchipip"
scalaVersion := "2.12.10"
scalacOptions += "-Xsource:2.11"
libraryDependencies += "edu.berkeley.cs" %% "rocketchip" % "1.2.+"
publishMavenStyle := true
publishArtifact in Test := false
pomIncludeRepository := { x => false }
pomExtra := <url>https://github.com/ucb-bar/testchipip</url>
<licenses>
<license>
<name>BSD-style</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/ucb-bar/testchipip.git</url>
<connection>scm:git:github.com/ucb-bar/testchipip.git</connection>
</scm>
publishTo := {
val v = version.value
val nexus = "https://oss.sonatype.org/"
if (v.trim.endsWith("SNAPSHOT")) {
Some("snapshots" at nexus + "content/repositories/snapshots")
}
else {
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
}
resolvers ++= Seq(
Resolver.sonatypeRepo("snapshots"),
Resolver.sonatypeRepo("releases"),
Resolver.mavenLocal)
1
https://gitee.com/RV4Kids/testchipip.git
git@gitee.com:RV4Kids/testchipip.git
RV4Kids
testchipip
testchipip
master

搜索帮助