Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified extlib/jdmkrt-2007-01-10.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion openam-clientsdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
<include>com.fasterxml.jackson.core:jackson-annotations</include>
<include>joda-time:joda-time</include>
<include>org.slf4j:slf4j-api</include>
<include>org.opendaylight.cardinal:jdmk</include>
<include>external:jdmkrt</include>
<include>javax.xml.bind:jaxb-api</include>
<include>com.sun.xml.bind:jaxb-core</include>
<include>com.sun.xml.bind:jaxb-impl</include>
Expand Down
4 changes: 2 additions & 2 deletions openam-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -389,8 +389,8 @@

<!-- Legacy External Libraries for OpenAM -->
<dependency>
<groupId>org.opendaylight.cardinal</groupId>
<artifactId>jdmk</artifactId>
<groupId>external</groupId>
<artifactId>jdmkrt</artifactId>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
Expand Down
4 changes: 2 additions & 2 deletions openam-schema/openam-mib-schema/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@
</dependency>

<dependency>
<groupId>org.opendaylight.cardinal</groupId>
<artifactId>jdmk</artifactId>
<groupId>external</groupId>
<artifactId>jdmkrt</artifactId>
</dependency>
</dependencies>
</project>
Expand Down
25 changes: 20 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1360,11 +1360,11 @@
<artifactId>authapi</artifactId>
<version>${authapi.version}</version>
</dependency>
<dependency>
<groupId>org.opendaylight.cardinal</groupId>
<artifactId>jdmk</artifactId>
<version>0.3.3</version>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>jdmkrt</artifactId>
<version>2007-01-10</version>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>jdmktk</artifactId>
Expand Down Expand Up @@ -2298,6 +2298,21 @@
<artifactId>maven-install-plugin</artifactId>
<inherited>false</inherited>
<executions>
<execution>
<id>install-jar-lib-jdmkrt</id>
<goals>
<goal>install-file</goal>
</goals>
<phase>validate</phase>
<configuration>
<groupId>external</groupId>
<artifactId>jdmkrt</artifactId>
<version>2007-01-10</version>
<packaging>jar</packaging>
<file>${basedir}/extlib/jdmkrt-2007-01-10.jar</file>
<generatePom>true</generatePom>
</configuration>
</execution>
<execution>
<id>install-jar-lib-jdmktk</id>
<goals>
Expand Down