Created
February 17, 2013 02:48
-
-
Save abbaspour/4969834 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>oes-demo</groupId> | |
<artifactId>authorization-client-rmi</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
<properties> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<version.oes>11.1.1</version.oes> | |
<version.wls>10.3</version.wls> | |
</properties> | |
<build> | |
<defaultGoal>compile</defaultGoal> | |
</build> | |
<dependencies> | |
<!-- wls client for principals and general rmi types --> | |
<dependency> | |
<!-- see: http://download.oracle.com/docs/cd/E12840_01/wls/docs103/client/jarbuilder.html --> | |
<groupId>weblogic</groupId> | |
<artifactId>wlfullclient</artifactId> | |
<version>${version.wls}</version> | |
</dependency> | |
<!-- RMI types and stubs --> | |
<dependency> | |
<groupId>oracle.oes.sm.rmism</groupId> | |
<artifactId>rmi-types</artifactId> | |
<version>${version.oes}</version> | |
<scope>system</scope> | |
<systemPath>D:/project/OES/oes_client/oessm/rmism/rmi-types.jar</systemPath> | |
</dependency> | |
<dependency> | |
<groupId>oracle.oes.sm.rmism</groupId> | |
<artifactId>rmi-stubs</artifactId> | |
<version>${version.oes}</version> | |
<scope>system</scope> | |
<systemPath>D:/project/OES/oes_client/oessm/rmism/rmi-stubs.jar</systemPath> | |
</dependency> | |
</dependencies> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment