I want to custom the logstash java-Filter follow the url:https://www.elastic.co/guide/en/logstash/7.6/java-filter-plugin.html
but I meet a problem when I run "gradlew gem"
the error is below
I want to custom the logstash java-Filter follow the url:https://www.elastic.co/guide/en/logstash/7.6/java-filter-plugin.html
but I meet a problem when I run "gradlew gem"
the error is below
this problem have be resovled!!!!
just to modiy the configuration file:build.gradle
use
tasks.register("gem"){
dependsOn downloadAndInstallJRuby
dependsOn removeObsoleteJars
dependsOn vendor
dependsOn generateRubySupportFiles
doLast {
buildGem(projectDir, buildDir, pluginInfo.pluginFullName() + ".gemspec")
}
}
replace
tasks.register("gem"){
dependsOn [downloadAndInstallJRuby,removeObsoleteJars,vendor,generateRubySupportFiles]
doLast {
buildGem(projectDir, buildDir, pluginInfo.pluginFullName() + ".gemspec")
}
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
© 2020. All Rights Reserved - Elasticsearch
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant logo are trademarks of the Apache Software Foundation in the United States and/or other countries.