Compiled for 6.2.2

This commit is contained in:
Vadim Shulkin 2025-05-10 10:46:11 -04:00
parent 2f28961842
commit 33e1681c06
6 changed files with 28 additions and 957 deletions

View File

@ -25,12 +25,12 @@
<parent>
<groupId>org.graylog.plugins</groupId>
<artifactId>graylog-plugin-parent</artifactId>
<version>5.1.5</version>
<version>6.2.2</version>
</parent>
<groupId>com.example.plugins</groupId>
<artifactId>graylog-plugin-function-base64inflate</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
@ -120,7 +120,16 @@
<artifactId>auto-service-annotations</artifactId>
<version>1.1.1</version>
</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. -->
<dependency>
<groupId>org.graylog2</groupId>

View File

@ -19,6 +19,8 @@
package org.graylog.plugins.custom;
import com.google.auto.service.AutoService;
import com.google.inject.AbstractModule;
import org.graylog.plugins.pipelineprocessor.EvaluationContext;
import org.graylog.plugins.pipelineprocessor.ast.expressions.Expression;
import org.graylog.plugins.pipelineprocessor.ast.functions.AbstractFunction;

View File

@ -1,8 +1,8 @@
# The plugin version
version=1.0.0-SNAPSHOT
version=1.0.1-SNAPSHOT
# 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 loading the plugin. When set to false, the plugin shares a class loader

View File

@ -1,5 +1,5 @@
#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
groupId=com.example.plugins
version=1.0.0-SNAPSHOT
version=1.0.1-SNAPSHOT