Skip to content

Commit a714fc1

Browse files
committed
fix: release v6.3.5
1 parent 2fcd902 commit a714fc1

File tree

2 files changed

+22
-9
lines changed

2 files changed

+22
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Based on the syslog4j library bundled with Graylog.
55
This plugin allows you to forward messages from a Graylog server in syslog format.
66
Messages can be dispatched over TCP or UDP and formatted as plain text (classic), structured syslog (rfc 5424) or CEF (experimental).
77

8-
This plugin supports Graylog 4.x.
8+
This plugin supports Graylog 6.3.5+
99
Newer or older releases might work, please try to use the latest plugin.
1010

1111
## Graylog marketplace

pom.xml

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,13 @@
1717

1818
<properties>
1919
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20-
<maven.compiler.source>1.8</maven.compiler.source>
21-
<maven.compiler.target>1.8</maven.compiler.target>
20+
<maven.compiler.release>21</maven.compiler.release>
21+
<maven.compiler.source>21</maven.compiler.source>
22+
<maven.compiler.target>21</maven.compiler.target>
2223
<maven.install.skip>true</maven.install.skip>
2324
<maven.deploy.skip>true</maven.deploy.skip>
2425
<maven.site.skip>true</maven.site.skip>
25-
<graylog2.version>6.0.4</graylog2.version>
26+
<graylog2.version>6.3.5</graylog2.version>
2627
<graylog2.syslog4j.version>0.9.61</graylog2.syslog4j.version>
2728
<guice.version>7.0.0</guice.version>
2829
</properties>
@@ -32,20 +33,20 @@
3233
<dependency>
3334
<groupId>com.fasterxml.jackson.core</groupId>
3435
<artifactId>jackson-core</artifactId>
35-
<version>2.9.9</version>
36+
<version>2.20.0</version>
3637
<scope>test</scope>
3738
</dependency>
3839
<dependency>
3940
<groupId>com.fasterxml.jackson.core</groupId>
4041
<artifactId>jackson-databind</artifactId>
41-
<version>2.9.9</version>
42+
<version>2.20.0</version>
4243
<scope>test</scope>
4344
</dependency>
4445
<!-- com.codahale.metrics -->
4546
<dependency>
4647
<groupId>io.dropwizard.metrics</groupId>
4748
<artifactId>metrics-core</artifactId>
48-
<version>4.1.0</version>
49+
<version>4.2.37</version>
4950
<scope>test</scope>
5051
</dependency>
5152
<dependency>
@@ -57,7 +58,7 @@
5758
<dependency>
5859
<groupId>junit</groupId>
5960
<artifactId>junit</artifactId>
60-
<version>4.12</version>
61+
<version>4.13.2</version>
6162
<scope>test</scope>
6263
</dependency>
6364
<dependency>
@@ -75,7 +76,7 @@
7576
<dependency>
7677
<groupId>org.slf4j</groupId>
7778
<artifactId>slf4j-jdk14</artifactId>
78-
<version>1.7.21</version>
79+
<version>2.0.17</version>
7980
<scope>provided</scope>
8081
</dependency>
8182
<dependency>
@@ -97,6 +98,18 @@
9798
<version>3.2.1</version>
9899
<scope>provided</scope>
99100
</dependency>
101+
<dependency>
102+
<groupId>org.apache.commons</groupId>
103+
<artifactId>commons-lang3</artifactId>
104+
<version>3.19.0</version>
105+
<scope>provided</scope>
106+
</dependency>
107+
<dependency>
108+
<groupId>commons-lang</groupId>
109+
<artifactId>commons-lang</artifactId>
110+
<version>2.6</version>
111+
<scope>provided</scope>
112+
</dependency>
100113
</dependencies>
101114
<build>
102115
<plugins>

0 commit comments

Comments
 (0)