Skip to content

Commit 4e62a8c

Browse files
authored
[#931] Update OpenDMK external library to fix SNMP monitoring (#932)
1 parent 7420458 commit 4e62a8c

File tree

5 files changed

+25
-10
lines changed

5 files changed

+25
-10
lines changed

extlib/jdmkrt-2007-01-10.jar

-1.31 MB
Binary file not shown.

openam-clientsdk/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
<include>com.fasterxml.jackson.core:jackson-annotations</include>
143143
<include>joda-time:joda-time</include>
144144
<include>org.slf4j:slf4j-api</include>
145-
<include>org.opendaylight.cardinal:jdmk</include>
145+
<include>external:jdmkrt</include>
146146
<include>javax.xml.bind:jaxb-api</include>
147147
<include>com.sun.xml.bind:jaxb-core</include>
148148
<include>com.sun.xml.bind:jaxb-impl</include>

openam-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,8 +389,8 @@
389389

390390
<!-- Legacy External Libraries for OpenAM -->
391391
<dependency>
392-
<groupId>org.opendaylight.cardinal</groupId>
393-
<artifactId>jdmk</artifactId>
392+
<groupId>external</groupId>
393+
<artifactId>jdmkrt</artifactId>
394394
</dependency>
395395
<dependency>
396396
<groupId>com.google.inject</groupId>

openam-schema/openam-mib-schema/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@
134134
</dependency>
135135

136136
<dependency>
137-
<groupId>org.opendaylight.cardinal</groupId>
138-
<artifactId>jdmk</artifactId>
137+
<groupId>external</groupId>
138+
<artifactId>jdmkrt</artifactId>
139139
</dependency>
140140
</dependencies>
141141
</project>

pom.xml

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1360,11 +1360,11 @@
13601360
<artifactId>authapi</artifactId>
13611361
<version>${authapi.version}</version>
13621362
</dependency>
1363-
<dependency>
1364-
<groupId>org.opendaylight.cardinal</groupId>
1365-
<artifactId>jdmk</artifactId>
1366-
<version>0.3.3</version>
1367-
</dependency>
1363+
<dependency>
1364+
<groupId>external</groupId>
1365+
<artifactId>jdmkrt</artifactId>
1366+
<version>2007-01-10</version>
1367+
</dependency>
13681368
<dependency>
13691369
<groupId>external</groupId>
13701370
<artifactId>jdmktk</artifactId>
@@ -2298,6 +2298,21 @@
22982298
<artifactId>maven-install-plugin</artifactId>
22992299
<inherited>false</inherited>
23002300
<executions>
2301+
<execution>
2302+
<id>install-jar-lib-jdmkrt</id>
2303+
<goals>
2304+
<goal>install-file</goal>
2305+
</goals>
2306+
<phase>validate</phase>
2307+
<configuration>
2308+
<groupId>external</groupId>
2309+
<artifactId>jdmkrt</artifactId>
2310+
<version>2007-01-10</version>
2311+
<packaging>jar</packaging>
2312+
<file>${basedir}/extlib/jdmkrt-2007-01-10.jar</file>
2313+
<generatePom>true</generatePom>
2314+
</configuration>
2315+
</execution>
23012316
<execution>
23022317
<id>install-jar-lib-jdmktk</id>
23032318
<goals>

0 commit comments

Comments
 (0)