1

私はプレイを使用しています!依存関係に SBT を使用する 2 フレームワーク。Spring Data Neo4jの 2.1.0-BUILD-SNAPSHOT バージョンを取得したい

私のApplicationBuild.scala(SBTで使用)は次のとおりです。

import sbt._
import Keys._
import play.Project._

object ApplicationBuild extends Build {

  val appName = "webapp"
  val appVersion = "1.0-SNAPSHOT"

  val appDependencies = Seq(
    jdbc,
    anorm,
    "org.springframework" % "spring-aop" % "3.2.0.RELEASE",
    "org.springframework" % "spring-aspects" % "3.2.0.RELEASE",
    "org.springframework" % "spring-beans" % "3.2.0.RELEASE",
    "org.springframework.data" % "spring-data-commons-core" % "1.4.0.RELEASE",
    "org.springframework" % "spring-expression" % "3.2.0.RELEASE",
    "org.springframework" % "spring-jdbc" % "3.2.0.RELEASE",
    "org.springframework" % "spring-orm" % "3.2.0.RELEASE",
    "org.springframework" % "spring-test" % "3.2.0.RELEASE",
    "org.springframework" % "spring-tx" % "3.2.0.RELEASE",
    "org.springframework.data" % "spring-data-neo4j" % "2.1.0.BUILD-SNAPSHOT" excludeAll(
        ExclusionRule(organization = "com.sun.jdmk"),
        ExclusionRule(organization = "com.sun.jmx"),
        ExclusionRule(organization = "javax.jms")
      ),
    "org.neo4j" % "neo4j" % "1.8.1",
    "asm" % "asm-all" % "3.1"
  )

  val main = play.Project(appName, appVersion, appDependencies).settings(
    scalaVersion := "2.10.0",
    resolvers += "TAMU Release Repository" at "https://maven.library.tamu.edu/content/repositories/releases/",
    resolvers += "Spring Maven SNAPSHOT Repository" at "http://repo.springsource.org/libs-snapshot"
  )

}

spring-data-neo4jを除くすべての依存関係が適切にダウンロードされます。

次のエラーが発生します。

warn]  ::::::::::::::::::::::::::::::::::::::::::::::                                        
[warn]  ::          UNRESOLVED DEPENDENCIES         ::
[warn]  ::::::::::::::::::::::::::::::::::::::::::::::
[warn]  :: org.neo4j#neo4j-cypher-dsl;1.8.RC1: not found
[warn]  ::::::::::::::::::::::::::::::::::::::::::::::
[error] (*:update) sbt.ResolveException: unresolved dependency: org.neo4j#neo4j-cypher-dsl;1.8.RC1: not found

neo4j-cypher-dsl;1.8.RC1見つからないのは普通ですか?取得するにはどうすればよいですか?

4

1 に答える 1

1

回避策を見つけました:

追加:

resolvers += "Neo4j Cypher DSL Repository" at "http://m2.neo4j.org/content/repositories/releases"

不足しているjarをダウンロードします。

于 2013-01-19T21:32:34.930 に答える