openesb-components/contrib-gestalt/sipbc/integration/pom.xml

98 lines
2.7 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>com.gestalt.jbi.components.binding.sip</groupId>
<artifactId>sip-binding-component</artifactId>
<version>0.9.5-SNAPSHOT</version>
</parent>
<artifactId>sip-binding-component-integration</artifactId>
<name>Gestalt :: JBI Components :: Binding Components :: Server Neutral :: SIP Binding Component :: Integration</name>
<packaging>jar</packaging>
<build>
<resources>
<resource>
<directory>${basedir}/src/main/java</directory>
<includes>
<include>**/Bundle*.properties</include>
</includes>
</resource>
</resources>
<testSourceDirectory>src/it/java</testSourceDirectory>
<testResources>
<testResource>
<directory>src/it/resources</directory>
<includes>
<include>**/**</include>
</includes>
</testResource>
</testResources>
</build>
<dependencies>
<dependency>
<groupId>com.gestalt.jbi.components.binding.sip</groupId>
<artifactId>sip-binding-component-impl</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>2.0.6</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>2.0.6</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>integration</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemProperties>
<property>
<name>java.util.logging.config.file</name>
<value>${logging.location}</value>
</property>
</systemProperties>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<maven.test.skip>true</maven.test.skip>
</properties>
</profile>
</profiles>
</project>