corba-rmi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.addc</groupId> <artifactId>corba-rmi</artifactId> <version>1.8</version> </dependency>
<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> <parent> <groupId>com.addc.pom</groupId> <artifactId>addc-pom</artifactId> <version>8.7.4</version> </parent> <groupId>com.addc</groupId> <artifactId>corba-rmi</artifactId> <version>1.8</version> <packaging>jar</packaging> <name>corba-rmi</name> <description>CORBA/RMI module for Java 11 based on JBoss rmi api spec master</description> <url>https://www.peterkanis.com/projects/</url> <properties> <maven.compiler.source>1.6</maven.compiler.source> <maven.compiler.target>1.6</maven.compiler.target> </properties> <scm> <connection>scm:svn:svn+ssh://pkanis@svn.code.sf.net/p/addc-commons/code/corba-rmi/trunk/</connection> <developerConnection>scm:svn:svn+ssh://pkanis@svn.code.sf.net/p/addc-commons/code/corba-rmi/trunk/</developerConnection> <url>https://svn.code.sf.net/p/addc-commons/code/corba-rmi/trunk/</url> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>prepare-endorsed-for-compile</id> <phase>none</phase> </execution> <execution> <id>prepare-endorsed-for-compiler</id> <phase>generate-sources</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.jacorb</groupId> <artifactId>jacorb</artifactId> <type>jar</type> <outputDirectory>${project.build.directory}/endorsed</outputDirectory> </artifactItem> </artifactItems> </configuration> </execution> <execution> <id>prepare</id> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <executions> <execution> <id>check-third-party-licenses</id> <phase>none</phase> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.jacorb</groupId> <artifactId>jacorb-omgapi</artifactId> </dependency> </dependencies> </project>