Skip to content

Instantly share code, notes, and snippets.

@sveinung
Created May 18, 2011 16:35
Show Gist options
  • Save sveinung/978948 to your computer and use it in GitHub Desktop.
Save sveinung/978948 to your computer and use it in GitHub Desktop.
<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>
<groupId>no.citrus.example</groupId>
<artifactId>car</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>car</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<citrus.junit.runner.version>1.0-SNAPSHOT</citrus.junit.runner.version>
</properties>
<repositories>
<repository>
<id>cukes</id>
<url>http://cukes.info/maven</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>cuke4duke</groupId>
<artifactId>cuke4duke</artifactId>
<version>0.4.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>no.citrus.runner</groupId>
<artifactId>junit</artifactId>
<version>${citrus.junit.runner.version}</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>runtest</goal>
</goals>
<configuration>
<!-- <includeProjectDependencies>true</includeProjectDependencies> -->
<techniqueNumber>6</techniqueNumber>
<technique0>
<param>9</param>
<param>10</param>
</technique0>
<citrusTechniqueUrl>http://localhost:8090/testorder/</citrusTechniqueUrl>
<reportUrl>http://localhost:8090/measure/</reportUrl>
<skipSendReport>true</skipSendReport>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment