Files
sailing-analytics/java/com.sap.sse.landscape.aws.test/pom.xml
T

42 lines
1.4 KiB
XML
Executable File

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>root</artifactId>
<groupId>com.sap.sailing</groupId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>com.sap.sse.landscape.aws.test</artifactId>
<packaging>eclipse-test-plugin</packaging>
<!-- Enable the following if there is a valid AWS SDK key available in the test execution environment:
<packaging>eclipse-test-plugin</packaging>
-->
<properties>
<tycho.plugin-test.skip>true</tycho.plugin-test.skip>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<excludes>
<test>**/*</test>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>