openesb-components/contrib-imola/corba-bc/integration-test/test-consumer-fromidl-simple/consumer-fromidl-simple-htt.../pom.xml

59 lines
1.8 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>
<parent>
<groupId>it.imolinfo.jbi4corba.test-consumer-fromidl-simple</groupId>
<artifactId>test-consumer-fromidl-simple</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>consumer-fromidl-simple-http-consumer</artifactId>
<!--
=========================================================
DESCRIPTION
=========================================================
-->
<name>${pom.groupId}.${pom.artifactId}-${pom.version} # ${pom.packaging}</name>
<!--
=========================================================
PACKAGING
=========================================================
-->
<packaging>jbi-service-unit</packaging>
<description>su exposing http service for consumer test</description>
<dependencies>
<dependency>
<groupId>org.apache.servicemix</groupId>
<artifactId>servicemix-http</artifactId>
<version>${defaultServicemixVersion}</version>
</dependency>
</dependencies>
<!-- Profile which creates service unit for Open ESB -->
<profiles>
<profile>
<id>OpenESB</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<!--
NetBeans 5.5.1 = com.sun.httpsoapbc-1.0-2
NetBeans 6.0 = sun-http-binding
-->
<properties>
<componentName>sun-http-binding</componentName>
</properties>
</profile>
<profile>
<id>ServiceMix</id>
<properties>
<componentName>servicemix-http</componentName>
</properties>
</profile>
</profiles>
</project>