Compiled for 6.2.2
This commit is contained in:
parent
2f28961842
commit
33e1681c06
File diff suppressed because it is too large
Load Diff
|
|
@ -25,12 +25,12 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.graylog.plugins</groupId>
|
<groupId>org.graylog.plugins</groupId>
|
||||||
<artifactId>graylog-plugin-parent</artifactId>
|
<artifactId>graylog-plugin-parent</artifactId>
|
||||||
<version>5.1.5</version>
|
<version>6.2.2</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<groupId>com.example.plugins</groupId>
|
<groupId>com.example.plugins</groupId>
|
||||||
<artifactId>graylog-plugin-function-base64inflate</artifactId>
|
<artifactId>graylog-plugin-function-base64inflate</artifactId>
|
||||||
<version>1.0.0-SNAPSHOT</version>
|
<version>1.0.1-SNAPSHOT</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>${project.artifactId}</name>
|
<name>${project.artifactId}</name>
|
||||||
|
|
@ -120,7 +120,16 @@
|
||||||
<artifactId>auto-service-annotations</artifactId>
|
<artifactId>auto-service-annotations</artifactId>
|
||||||
<version>1.1.1</version>
|
<version>1.1.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.google.inject</groupId>
|
||||||
|
<artifactId>guice</artifactId>
|
||||||
|
<version>7.0.0</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.slf4j</groupId>
|
||||||
|
<artifactId>slf4j-log4j13</artifactId>
|
||||||
|
<version>1.0</version>
|
||||||
|
</dependency>
|
||||||
<!-- Include source from test-jar to reuse test classes. -->
|
<!-- Include source from test-jar to reuse test classes. -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.graylog2</groupId>
|
<groupId>org.graylog2</groupId>
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,8 @@
|
||||||
package org.graylog.plugins.custom;
|
package org.graylog.plugins.custom;
|
||||||
|
|
||||||
import com.google.auto.service.AutoService;
|
import com.google.auto.service.AutoService;
|
||||||
|
import com.google.inject.AbstractModule;
|
||||||
|
|
||||||
import org.graylog.plugins.pipelineprocessor.EvaluationContext;
|
import org.graylog.plugins.pipelineprocessor.EvaluationContext;
|
||||||
import org.graylog.plugins.pipelineprocessor.ast.expressions.Expression;
|
import org.graylog.plugins.pipelineprocessor.ast.expressions.Expression;
|
||||||
import org.graylog.plugins.pipelineprocessor.ast.functions.AbstractFunction;
|
import org.graylog.plugins.pipelineprocessor.ast.functions.AbstractFunction;
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
# The plugin version
|
# The plugin version
|
||||||
version=1.0.0-SNAPSHOT
|
version=1.0.1-SNAPSHOT
|
||||||
|
|
||||||
# The required Graylog server version
|
# The required Graylog server version
|
||||||
graylog.version=5.1.5
|
graylog.version=6.2.2
|
||||||
|
|
||||||
# When set to true (the default) the plugin gets a separate class loader
|
# When set to true (the default) the plugin gets a separate class loader
|
||||||
# when loading the plugin. When set to false, the plugin shares a class loader
|
# when loading the plugin. When set to false, the plugin shares a class loader
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1,5 +1,5 @@
|
||||||
#Generated by Apache Maven
|
#Generated by Apache Maven
|
||||||
#Thu May 08 11:05:30 EDT 2025
|
#Sat May 10 10:42:17 EDT 2025
|
||||||
artifactId=graylog-plugin-function-base64inflate
|
artifactId=graylog-plugin-function-base64inflate
|
||||||
groupId=com.example.plugins
|
groupId=com.example.plugins
|
||||||
version=1.0.0-SNAPSHOT
|
version=1.0.1-SNAPSHOT
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue