本文介绍了Gradle Scala插件推论到sbt中的addCompilerPlugin的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

在Gradle中向scalaCompile任务添加Scala编译器插件的最佳方法是什么?

What is the best way to add a Scala compiler plugin to the scalaCompile task in Gradle?

推荐答案

  1. 为编译器插件添加配置:configurations { scalaCompilerPlugin}

  1. Add a configuration for compiler plugins:configurations { scalaCompilerPlugin}

添加编译器插件依赖项:dependencies { scalaCompilerPlugin "org.scalamacros:paradise_2.11.7:2.1.0"}

Add compiler plugin dependencies:dependencies { scalaCompilerPlugin "org.scalamacros:paradise_2.11.7:2.1.0"}

设置选项:tasks.withType(ScalaCompile) { scalaCompileOptions.additionalParameters = [ "-Xplugin:" + configurations.scalaCompilerPlugin.asPath ]}

Set up the option:tasks.withType(ScalaCompile) { scalaCompileOptions.additionalParameters = [ "-Xplugin:" + configurations.scalaCompilerPlugin.asPath ]}

我能够在Gradle中使用Macro Paradise设置的项目.

这篇关于Gradle Scala插件推论到sbt中的addCompilerPlugin的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-06 22:01