openesb-components/contrib-imola/corba-bc/integration-test/test-consumer-fault/run-orbd/pom.xml

74 lines
1.9 KiB
XML
Executable File

<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<!--
=========================================================
COORDINATES
=========================================================
-->
<parent>
<groupId>it.imolinfo.jbi4corba.test-consumer-fault</groupId>
<artifactId>test-consumer-fault</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>run-orbd</artifactId>
<!--
=========================================================
DESCRIPTION
=========================================================
-->
<name>${pom.groupId}.${pom.artifactId}-${pom.version} # ${pom.packaging}</name>
<description>Run Orbd</description>
<!--
=========================================================
PACKAGING
=========================================================
-->
<packaging>jar</packaging>
<!--
=========================================================
DEPENDENCIES
=========================================================
-->
<repositories>
<!-- pick up jacorb from jboss: -->
<repository>
<id>jboss-maven2-repo</id>
<name>Jboss Maven2 Repository</name>
<url>http://repository.jboss.com/maven2</url>
</repository>
</repositories>
<!--
=========================================================
BUILD
=========================================================
-->
<build>
<!-- PLUGINS -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
</project>