UNPKG

generator-sap-partner-eng

Version:

Project/Module Generator for SAP Partner Engineering Guided Projects

220 lines (210 loc) 8.52 kB
<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> <artifactId><%= app_name %>-integration-tests</artifactId> <groupId>customer</groupId> <version>1.0-SNAPSHOT</version> <packaging>jar</packaging> <parent> <artifactId><%= app_name %></artifactId> <groupId>customer</groupId> <version>1.0-SNAPSHOT</version> </parent> <name>integration-tests</name> <properties> <surefire.forkCount>1</surefire.forkCount> <surefire.include>*</surefire.include> <surefire.exclude/> <surefire.groups/> <surefire.excludedGroups/> <surefire.maxMemorySize>1024m</surefire.maxMemorySize> <surefire.logLevel>info</surefire.logLevel> <jacoco.destFile>${project.build.directory}/coverage-reports/jacoco.exec</jacoco.destFile> <jacoco.outputDirectory>${project.reporting.outputDirectory}/jacoco</jacoco.outputDirectory> </properties> <dependencies> <dependency> <groupId>customer</groupId> <artifactId><%= app_name %>-srv</artifactId> <classifier>classes</classifier> <version>1.0-SNAPSHOT</version> <scope>test</scope> <exclusions> <exclusion> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.sap.cloud.s4hana.cloudplatform</groupId> <artifactId>scp-cf</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.sap.cloud.s4hana</groupId> <artifactId>s4hana-all</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.sap.cloud.s4hana</groupId> <artifactId>testutil</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.sap.cloud.db.jdbc</groupId> <artifactId>ngdbc</artifactId> <version>2.3.62</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.openejb</groupId> <artifactId>arquillian-tomee-embedded</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.openejb</groupId> <artifactId>tomee-embedded</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> </exclusion> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.openejb</groupId> <artifactId>tomee-jaxrs</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.1</version> <configuration> <destFile>${jacoco.destFile}</destFile> <dataFile>${jacoco.destFile}</dataFile> </configuration> <executions> <execution> <id>pre-unit-test</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>post-unit-test</id> <phase>test</phase> <goals> <goal>report</goal> </goals> <configuration> <outputDirectory>${jacoco.outputDirectory}</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> <executions> <!-- Copying the edmx files to the integration-tests project --> <execution> <id>copy-resources</id> <phase>validate</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/src/test/resources/edmx</outputDirectory> <resources> <resource> <directory>${project.parent.basedir}/srv/src/main/resources/edmx</directory> <filtering>true</filtering> </resource> </resources> </configuration> </execution> <execution> <id>default-testResources</id> <phase>process-test-resources</phase> <goals> <goal>testResources</goal> </goals> </execution> <execution> <id>default-resources</id> <phase>process-resources</phase> <goals> <goal>resources</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.19.1</version> <configuration> <argLine>@{argLine} -Xmx${surefire.maxMemorySize} -Dorg.slf4j.simpleLogger.defaultLogLevel=${surefire.logLevel} -Djava.io.tmpdir=target/arquillian-working-dir/${surefire.forkNumber}/ </argLine> <includes> <include>${surefire.include}</include> </includes> <excludes> <exclude>${surefire.exclude}</exclude> </excludes> <forkCount>${surefire.forkCount}</forkCount> <reuseForks>false</reuseForks> <groups>${surefire.groups}</groups> <excludedGroups>${surefire.excludedGroups}</excludedGroups> <systemPropertyVariables> <application.location>${project.parent.basedir}/srv</application.location> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </project>