Created
January 3, 2015 14:35
-
-
Save ivanursul/c96c985e54e5168bc3ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <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> | |
| <groupId>is-lnu</groupId> | |
| <artifactId>is-lnu</artifactId> | |
| <version>0.0.1-SNAPSHOT</version> | |
| </parent> | |
| <groupId>is-lnu-integration</groupId> | |
| <artifactId>is-lnu-integration</artifactId> | |
| <pluginRepositories> | |
| <pluginRepository> | |
| <id>excilys</id> | |
| <name>Excilys Repository</name> | |
| <url>http://repository.excilys.com/content/groups/public</url> | |
| </pluginRepository> | |
| </pluginRepositories> | |
| <properties> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| <gatling.version>2.0.0-RC1</gatling.version> | |
| <checkstyleDir>${basedir}/../checks</checkstyleDir> | |
| <findBugsDir>${basedir}/../findbugs</findBugsDir> | |
| </properties> | |
| <dependencies> | |
| <dependency> | |
| <groupId>io.gatling.highcharts</groupId> | |
| <artifactId>gatling-charts-highcharts</artifactId> | |
| <version>${gatling.version}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| </dependencies> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>io.gatling</groupId> | |
| <artifactId>gatling-maven-plugin</artifactId> | |
| <version>${gatling.version}</version> | |
| <executions> | |
| <execution> | |
| <phase>test</phase> | |
| <goals> | |
| <goal>execute</goal> | |
| </goals> | |
| <configuration> | |
| <dataFolder>src/test/resources/data</dataFolder> | |
| <resultsFolder>target/gatling/results</resultsFolder> | |
| <requestBodiesFolder>src/test/resources/request-bodies</requestBodiesFolder> | |
| <simulationClass>org.lnu.is.integration.IntegrationTest</simulationClass> | |
| <failOnError>true</failOnError> | |
| </configuration> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-surefire-plugin</artifactId> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment