<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>
<artifactId>com.gs.gapp.PARENT-maven</artifactId>
<groupId>com.gs.gapp</groupId>
<version>1.0.0</version>
</parent>
<artifactId>com.gs.gapp.PROJECT-test</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>gApp Test</name>
<packaging>eclipse-test-plugin</packaging>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<!-- Uncomment to connect remote debugger -->
<!-- <debugPort>5000</debugPort> -->
<!-- Uncomment to debug with "telnet localhost 5555" to OSGI console -->
<!-- <appArgLine>-consoleLog -console 5555 -noExit</appArgLine> -->
<!-- <excludes>
<exclude>**/*Test.java</exclude>
</excludes> -->
<defaultStartLevel>
<level>4</level>
<autoStart>true</autoStart>
</defaultStartLevel>
<dependencies>
<dependency>
<type>p2-installable-unit</type>
<artifactId>org.eclipse.equinox.ds</artifactId>
</dependency>
<dependency>
<type>p2-installable-unit</type>
<artifactId>org.eclipse.equinox.cm</artifactId>
</dependency>
<dependency>
<type>p2-installable-unit</type>
<artifactId>org.eclipse.equinox.console</artifactId>
</dependency>
<dependency>
<type>p2-installable-unit</type>
<artifactId>org.apache.felix.gogo.shell</artifactId>
</dependency>
<dependency>
<type>p2-installable-unit</type>
<artifactId>org.apache.felix.gogo.command</artifactId>
</dependency>
<dependency>
<type>p2-installable-unit</type>
<artifactId>org.apache.felix.gogo.runtime</artifactId>
</dependency>
</dependencies>
<bundleStartLevel>
<bundle>
<id>javax.transaction</id>
<level>4</level>
<autoStart>false</autoStart>
</bundle>
<bundle>
<id>com.vd.jenerateit-server</id>
<level>4</level>
<autoStart>false</autoStart>
</bundle>
<bundle>
<id>org.eclipse.tycho.surefire.junit4</id>
<level>4</level>
<autoStart>false</autoStart>
</bundle>
</bundleStartLevel>
</configuration>
</plugin>
</plugins>
</build>
</project>