首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >从sbt向ojo发布快照

从sbt向ojo发布快照
EN

Stack Overflow用户
提问于 2017-01-21 10:44:33
回答 1查看 156关注 0票数 1

我在dir项目中有"Common.scala“:

代码语言:javascript
运行
复制
import sbt.Keys._
import sbt._

import bintray.BintrayKeys._

object Common {

  val commonSettings = Seq(
    organization := "com.github.kondaurovdev",
    scalaVersion := "2.11.8",
    scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature"),
    publishLocal := (),
    parallelExecution := false
  )

  val doNotPublishSettings = Seq(
    publish := {},
    publishLocal := {}
  )

  def getPublishSettings(_version: String) = {

    if (_version.endsWith("-SNAPSHOT")) {
      {
        println("is snapshot!")
        Seq(
          publishTo := Some("Artifactory Realm" at "http://oss.jfrog.org/artifactory/oss-snapshot-local"),
          bintrayReleaseOnPublish := false,
          credentials := List(Path.userHome / ".bintray" / ".artifactory").filter(_.exists).map(Credentials(_))
        )
      }
    } else {
      {
        println("is release")
        Seq(
          bintrayOmitLicense := true,
          bintrayRepository := "maven",
          publishArtifact in Test := false,
          pomExtra :=
            <developers>
              <developer>
                <id>kondaurovdev</id>
                <name>Alexander Kondaurov</name>
                <email>kondaurov.dev@gmail.com</email>
              </developer>
            </developers>
        )
      }
    } ++ Seq(
      licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
    )
  }

  def myProject(name: String, _version: String = "0.1.1-SNAPSHOT", deps: Seq[ModuleID] = Seq(), settings: Seq[Def.SettingsDefinition] = Seq(), path: Option[String] = None): Project = {
    Project(name, file(path.getOrElse(name)))
      .settings(
        commonSettings ++
        getPublishSettings(_version)
      )
      .settings(
        libraryDependencies ++= deps,
        version := _version
      )
      .settings(
        settings: _*
      )
  }

}

因此,我在“build.sbt”中进行了项目:

代码语言:javascript
运行
复制
lazy val snippets: Project = {

  Common.myProject("snippets", deps = Seq(
    Deps.specs2,
    Deps.Log.slf4j
  ))

}

当我尝试“代码片段/发布”时,我会得到以下错误:

代码语言:javascript
运行
复制
> snippets/publish
[info] Wrote /Users/alexanderkondaurov/Projects/kondaurov/scala/snippets/target/scala-2.11/snippets_2.11-0.1-SNAPSHOT.pom
[info] :: delivering :: com.github.kondaurovdev#snippets_2.11;0.1-SNAPSHOT :: 0.1-SNAPSHOT :: integration :: Sat Jan 21 14:42:01 MSK 2017
[info]  delivering ivy file to /Users/alexanderkondaurov/Projects/kondaurov/scala/snippets/target/scala-2.11/ivy-0.1-SNAPSHOT.xml
[error] Unable to find credentials for [Artifactory Realm @ oss.jfrog.org].
[trace] Stack trace suppressed: run last snippets/*:bintrayEnsureLicenses for the full output.
[trace] Stack trace suppressed: run last snippets/*:publish for the full output.
[error] (snippets/*:bintrayEnsureLicenses) you must define at least one license for this project. Please choose one or more of
[error]  AFL-3.0, AGPL-V3, APL-1.0, APSL-2.0, Apache-1.0, Apache-1.1, Apache-2.0, Artistic-License-2.0, Attribution, BSD, BSD New, BSD Simplified, BSL-1.0, Bouncy-Castle, CA-TOSL-1.1, CDDL-1.0, CPAL-1.0, CPL-1.0, CPOL-1.02, CUAOFFICE-1.0, Codehaus, Day, Day-Addendum, ECL2, EUDATAGRID, EUPL-1.1, Eclipse-1.0, Eiffel-2.0, Entessa-1.0, Fair, Frameworx-1.0, GPL-2.0, GPL-2.0+CE, GPL-3.0, HSQLDB, Historical, IBMPL-1.0, IPAFont-1.0, ISC, IU-Extreme-1.1.1, JA-SIG, JSON, JTidy, LGPL-2.1, LGPL-3.0, Lucent-1.02, MIT, MPL-2.0, MS-PL, MS-RL, MirOS, Motosoto-0.9.1, Mozilla-1.1, Multics, NASA-1.3, NAUMEN, NOSL-3.0, NTP, Nethack, Nokia-1.0a, OCLC-2.0, OSL-3.0, Openfont-1.1, Opengroup, PHP-3.0, PostgreSQL, Public Domain, Public Domain - SUN, PythonPL, PythonSoftFoundation, QTPL-1.0, RPL-1.5, Real-1.0, RicohPL, SUNPublic-1.0, SimPL-2.0, Sleepycat, Sybase-1.0, TMate, Unlicense, UoI-NCSA, VovidaPL-1.0, W3C, WTFPL, Xnet, ZLIB, ZPL-2.0, wxWindows
[error] (snippets/*:publish) java.io.IOException: Access to URL http://oss.jfrog.org/artifactory/oss-snapshot-local/com/github/kondaurovdev/snippets_2.11/0.1-SNAPSHOT/snippets_2.11-0.1-SNAPSHOT.pom was refused by the server: Unauthorized
[error] Total time: 2 s, completed Jan 21, 2017 2:42:03 PM
> 

我不明白为什么它抱怨执照,我已经包括麻省理工学院执照..。接下来是本文:http://szimano.org/automatic-deployments-to-jfrog-oss-and-bintrayjcentermaven-central-via-travis-ci-from-sbt/

添加:

我通过在“凭据+= .”之后移动“license +=”("MIT",url(“http://opensource.org/licenses/MIT”))来解决这个许可证问题。

现在看起来:

代码语言:javascript
运行
复制
Seq(
  publishTo := Some("Artifactory Realm" at "https://oss.jfrog.org/artifactory/oss-snapshot-local"),
  bintrayReleaseOnPublish := false,
  credentials := List(Path.userHome / ".bintray" / ".artifactory").filter(_.exists()).map(Credentials(_)),
  licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
)

真奇怪..。凭据文件如下所示:

代码语言:javascript
运行
复制
realm = Artifactory Realm
host = oss.jfrog.org
user = *********
password = ***********

我知道,为了上传快照包,必须通过请求来支持服务。他们将为您的包创建文件夹。这个过程需要为的每个包做,你们在开玩笑吗?

我在这里有一个帐户"https://oss.sonatype.org/“。我有名称空间,可以上传我需要的任意数量的包,我期望OJO中也有相同的行为。我不是每次有新包的时候都会请求支持服务

EN

回答 1

Stack Overflow用户

发布于 2017-01-25 17:54:19

~/.sbt/中设置凭据是前进的方向。凭证可以在build.sbt中,但是用户名、密码保留在明文和存储库服务器的ip地址中。

若要通过配置文件设置凭据,可以使用:

代码语言:javascript
运行
复制
credentials += Credentials(Path.userHome / ".sbt" / ".credentials")

这将在一个名为.credentials的文件中获取凭证,该文件存储在我的~/.sbt/ dir中。

要在凭据obj中设置凭据,可以使用以下内容:

代码语言:javascript
运行
复制
credentials += Credentials("Artifactory Realm", "http://<ip>:<port>/artifactory/<repo-key>", "<username>", "<password>")

确保使用相关的解析器设置了publishTo也很重要。其中的一个例子是:

代码语言:javascript
运行
复制
publishTo := Some("Artifactory Realm" at "http://<ip>:<port>/artifactory/<repo-key>

配置代理。可以将以下内容添加到存储在repositories中的名为~/.sbt/的文件中。一个示例配置可能如下所示:

代码语言:javascript
运行
复制
[repositories]
local
my-ivy-proxy-releases: http://<host>:<port>/artifactory/<repo-key>/, [organization]/[module]/(scala_[scalaVersion]/)(sbt_[sbtVersion]/)[revision]/[type]s/[artifact](-[classifier]).[ext]
my-maven-proxy-releases: http://<host>:<port>/artifactory/<repo-key>/
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/41778396

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档