File tree Expand file tree Collapse file tree 3 files changed +30
-4
lines changed
src/main/java/com/wizecore/graylog2/plugin Expand file tree Collapse file tree 3 files changed +30
-4
lines changed Original file line number Diff line number Diff line change 22
22
<maven .install.skip>true</maven .install.skip>
23
23
<maven .deploy.skip>true</maven .deploy.skip>
24
24
<maven .site.skip>true</maven .site.skip>
25
- <graylog2 .version>6.0.0 </graylog2 .version>
25
+ <graylog2 .version>6.0.4 </graylog2 .version>
26
26
<graylog2 .syslog4j.version>0.9.61</graylog2 .syslog4j.version>
27
27
<guice .version>7.0.0</guice .version>
28
28
</properties >
29
29
30
30
<dependencies >
31
+ <!-- com/fasterxml/jackson -->
32
+ <dependency >
33
+ <groupId >com.fasterxml.jackson.core</groupId >
34
+ <artifactId >jackson-core</artifactId >
35
+ <version >2.9.9</version >
36
+ <scope >test</scope >
37
+ </dependency >
38
+ <dependency >
39
+ <groupId >com.fasterxml.jackson.core</groupId >
40
+ <artifactId >jackson-databind</artifactId >
41
+ <version >2.9.9</version >
42
+ <scope >test</scope >
43
+ </dependency >
44
+ <!-- com.codahale.metrics -->
45
+ <dependency >
46
+ <groupId >io.dropwizard.metrics</groupId >
47
+ <artifactId >metrics-core</artifactId >
48
+ <version >4.1.0</version >
49
+ <scope >test</scope >
50
+ </dependency >
51
+ <dependency >
52
+ <groupId >com.swrve</groupId >
53
+ <artifactId >rate-limited-logger</artifactId >
54
+ <version >2.0.2</version >
55
+ <scope >test</scope >
56
+ </dependency >
31
57
<dependency >
32
58
<groupId >junit</groupId >
33
59
<artifactId >junit</artifactId >
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
set -e
3
3
HERE=$PWD
4
- VER=6.0.0
4
+ VER=6.0.4
5
5
URL=https://downloads.graylog.org/releases/graylog/graylog-$VER .tgz
6
6
if [ ! -f " graylog-$VER .tgz" ]; then
7
7
echo " Downloading $URL "
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ public Set<Capability> getRequiredCapabilities() {
32
32
33
33
@ Override
34
34
public Version getRequiredVersion () {
35
- return Version .from (4 , 2 , 6 );
35
+ return Version .from (6 , 0 , 0 );
36
36
}
37
37
38
38
@ Override
@@ -47,6 +47,6 @@ public String getUniqueId() {
47
47
48
48
@ Override
49
49
public Version getVersion () {
50
- return Version .from (4 , 2 , 6 );
50
+ return Version .from (6 , 0 , 4 );
51
51
}
52
52
}
You can’t perform that action at this time.
0 commit comments