播放 2.3.x 创建的模块在 Github 中找不到
Play 2.3.x created module not found in Github
我已经创建了自己的模块(用于 couchbase 包装器),然后按照此处提到的步骤 http://www.objectify.be/wordpress/?p=410. Initially, created the module and tested with local file path and it works. Then i pushed the module to github repository https://github.com/sivailango/sivailango.github.io
在我的示例项目中,尝试从 github 加载模块,我的 built.sbt 是
libraryDependencies ++= Seq(
javaJdbc,
javaEbean,
cache,
javaWs,
"com.smartcoders" % "play-java-couchbase_2.11" % "1.0"
)
resolvers += "PlayJavaCouch Wrapper" at "http://sivailango.github.io/releases/"
但无法下载此依赖项,com.smartcoders#play-java-couchbase_2.11;1.0: not found 是我的控制台中的错误。我使用 .io 域扩展创建了 github 个页面。我找不到错误在哪里? sivailango.github.io 是我的 github 页面 link。
需要将解析器更改为
resolvers += Resolver.url("PlayJavaCouch Wrapper", url("http://sivailango.github.io/releases/"))(Resolver.ivyStylePatterns)
感谢@Steve Chaloner
我已经创建了自己的模块(用于 couchbase 包装器),然后按照此处提到的步骤 http://www.objectify.be/wordpress/?p=410. Initially, created the module and tested with local file path and it works. Then i pushed the module to github repository https://github.com/sivailango/sivailango.github.io
在我的示例项目中,尝试从 github 加载模块,我的 built.sbt 是
libraryDependencies ++= Seq(
javaJdbc,
javaEbean,
cache,
javaWs,
"com.smartcoders" % "play-java-couchbase_2.11" % "1.0"
)
resolvers += "PlayJavaCouch Wrapper" at "http://sivailango.github.io/releases/"
但无法下载此依赖项,com.smartcoders#play-java-couchbase_2.11;1.0: not found 是我的控制台中的错误。我使用 .io 域扩展创建了 github 个页面。我找不到错误在哪里? sivailango.github.io 是我的 github 页面 link。
需要将解析器更改为
resolvers += Resolver.url("PlayJavaCouch Wrapper", url("http://sivailango.github.io/releases/"))(Resolver.ivyStylePatterns)
感谢@Steve Chaloner