Skip to content

Commit 4b1d25d

Browse files
authored
Merge pull request #22 from opsgenie/delete-bouncy-castle-dependency
exclude org.bouncycastle library for security reasons
2 parents a683225 + b59c436 commit 4b1d25d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.opsgenie.plugin.graylog</groupId>
88
<artifactId>opsgenie-graylog-alarmcallback</artifactId>
9-
<version>1.3.11-RELEASE</version>
9+
<version>1.3.12-RELEASE</version>
1010
<packaging>jar</packaging>
1111

1212
<name>${project.artifactId}</name>
@@ -62,6 +62,10 @@
6262
<artifactId>snakeyaml</artifactId>
6363
<groupId>org.yaml</groupId>
6464
</exclusion>
65+
<exclusion>
66+
<artifactId>*</artifactId>
67+
<groupId>org.bouncycastle</groupId>
68+
</exclusion>
6569
</exclusions>
6670
</dependency>
6771
<dependency>

src/main/java/com/opsgenie/plugin/graylog/OpsGenieAlarmCallbackMetaData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public URI getURL() {
3131

3232
@Override
3333
public Version getVersion() {
34-
return new Version(1, 3, 11, "RELEASE");
34+
return new Version(1, 3, 12, "RELEASE");
3535
}
3636

3737
@Override

0 commit comments

Comments
 (0)