Skip to content

Instantly share code, notes, and snippets.

@ivanursul
Last active August 29, 2015 14:13
Show Gist options
  • Select an option

  • Save ivanursul/d9d51e59a8b2119079ee to your computer and use it in GitHub Desktop.

Select an option

Save ivanursul/d9d51e59a8b2119079ee to your computer and use it in GitHub Desktop.
Project Object model for ivanursul.com
<?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>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<gatling.version>2.1.2</gatling.version>
<checkstyleDir>${basedir}/../checks</checkstyleDir>
<findBugsDir>${basedir}/../findbugs</findBugsDir>
<integration.url>http://localhost:8080/is-lnu-rest-api/api</integration.url>
</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>
<jvmArgs>
<jvmArg>-Dintegration.host=${integration.url}</jvmArg>
</jvmArgs>
</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