我正在使用https://github.com/julianpeeters/avrohugger sbt插件为Avro .avsc
文件生成Scala案例类。如何在Gradle项目中使用相同的插件?
答案 0 :(得分:2)
我创建了gradle插件,用于从Avro模式生成Scala案例类,并且该插件内部使用avrohugger
库。
现在将这个插件添加到您的项目中就足够了:
plugins {
id 'com.zlad.gradle.avrohugger' version '0.2.1'
}
当您要编译Scala源代码时,也需要Scala库依赖项:
plugins {
id 'scala'
id 'com.zlad.gradle.avrohugger' version '0.2.1'
}
repositories {
mavenCentral()
}
dependencies {
compile 'org.scala-lang:scala-library:2.12.8'
}
Scala类将在compileScala
任务之前的构建过程中自动生成。默认情况下,avro模式应位于src/main/avro
中,生成的源应位于build/generated-src/avro
您可以调用generateAvroScala
来手动调用Scala源代码生成。
您可以在gradle-avrohugger-plugin github page上找到所有详细信息和配置选项。
答案 1 :(得分:0)
我最终使用Gradle中的avrohugger-tools
库来更新我的架构时自动生成Scala case类。您的里程可能会有所不同,但这最终对我有用:
build.gradle.kts
import java.io.File
plugins {
scala
id("com.github.maiflai.scalatest") version "0.19"
}
version = "1.0"
configurations {
register("avrohugger-tools")
}
dependencies {
// Scala std-libs
implementation(Dependencies.Libs.Scala.library)
// AvroHugger tools JAR
"avrohugger-tools"("com.julianpeeters:avrohugger-tools_2.12:1.0.0-RC14")
// testing
testImplementation(gradleTestKit())
testImplementation("junit:junit:4.12")
testImplementation("org.scalatest:scalatest_2.12:3.0.5")
testRuntime("org.pegdown:pegdown:1.4.2")
}
fun normalizeFileSeparator(path: String) = path.replace('/', File.separatorChar)
val genAvro = task<JavaExec>("genAvro") {
val sourceAvroPath = normalizeFileSeparator("src/main/avro/")
val sourceAvroFiles = fileTree(mapOf(
"dir" to sourceAvroPath, "include" to listOf("**/*.avsc")
))
val targetPath = normalizeFileSeparator("src/gen/")
doFirst {
delete(targetPath)
}
classpath = configurations["avrohugger-tools"]
main = "avrohugger.tool.Main"
args(
"generate", "schema",
sourceAvroFiles.files.joinToString(separator=" "),
targetPath
)
inputs.files(sourceAvroFiles)
outputs.files(targetPath)
}
the<JavaPluginConvention>().sourceSets.getByName(
SourceSet.MAIN_SOURCE_SET_NAME
).java.srcDir("gen")
tasks.withType<ScalaCompile> {
dependsOn(genAvro)
}
inline fun <reified T : Task> TaskContainer.existing() = existing(T::class)
inline fun <reified T : Task> TaskContainer.register(name: String, configuration: Action<in T>) = register(name, T::class, configuration)
请注意,我也在此程序包中构建/测试一个Scala源代码树,因此大概可以省去一些特定于Scala的部分。
真的希望这会有所帮助!