如何在sbt项目中使用sbt插件作为库依赖?

时间:2017-03-27 08:01:41

标签: java scala sbt multi-project sbt-plugin

我有一个使用多项目构建的sbt插件项目。我想使用这个插件作为其他sbt项目的依赖项。我已经创建了一个插件但是当我将这个插件添加到项目中时,我似乎无法正确地链接到依赖项。

SBT-插件

build.sbt

name := "sbt-plugin"
  sbtPlugin := true
  val commonSettings = Seq(
  organization := "com.example",
  version := "1.0",
  scalaVersion := "2.11.7", 
  javacOptions := Seq("-source", "1.8", "-target", "1.8"), 
  scalacOptions := Seq("-target:jvm-1.8", "-unchecked", "-deprecation", "-encoding", "utf8"))

  lazy val plugin = (project in file("plugin"))
  .settings(commonSettings: _*)
  .settings(
      name := "plugin"
  )

  lazy val root = (project in file("."))
                .settings(commonSettings: _*)
                .dependsOn(plugin)
                .aggregate(plugin)

SBT-插件\插件\ SRC \主\阶\ COM \示例\ Hello.scala

  package com.example

  // Sample code I would like to access from another sbt project
  object Hello {
     def show = println("Hello, world!")
  }

的插件测试

plugin-test是一个sbt项目,我用来测试sbt-plugin

插件测试\ build.sbt

  name := """plugin-test"""

  version := "1.0"

  scalaVersion := "2.11.7"

  libraryDependencies += "org.scalatest" %% "scalatest" % "2.2.4" % "test"

  fork in run := true

插件测试\项目\ plugins.sbt

addSbtPlugin("com.example" % "sbt-plugin" % "1.0", "0.13","2.11")

插件测试\ SRC \主\阶\ COM \考试\ Test.scala

  package com.exam

  object Test {
     def result = com.example.Hello.show()
  }

但是当我编译插件测试项目时,它会显示以下错误:

  [error] E:\Play\SBT Plugin\sbt demo1\plugin-test\src\main\scala\com\exam\Test.scala:4: object example is not a member of package com
  [error] def result = com.example.Hello.show()
  [error] one error found

我在两个项目上执行了publish-local和plugin / publish-local,并且工件正确解析。 我将sbt-plugin添加到plugins.sbt并编译了项目,但Test.scala无法使用上述错误进行编译,就好像依赖项不存在一样。

我在这里缺少什么?

1 个答案:

答案 0 :(得分:0)

当您将插件指定为addSbtPlugin时,您只需将其添加到构建环境(即在build.sbt中执行),而不是在应用的类路径中({ {1}})。

在您的情况下,您需要将其用作常规依赖项。