59 lines
2.1 KiB
XML
59 lines
2.1 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<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">
|
||
|
<parent>
|
||
|
<groupId>org.eclipse.jetty.rhttp</groupId>
|
||
|
<artifactId>jetty-rhttp-project</artifactId>
|
||
|
<version>9.0.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<artifactId>reverse-http-loadtest</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
<name>Jetty :: Reverse HTTP :: Load Test</name>
|
||
|
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>loader</id>
|
||
|
<activation>
|
||
|
<activeByDefault>true</activeByDefault>
|
||
|
</activation>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.codehaus.mojo</groupId>
|
||
|
<artifactId>exec-maven-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<mainClass>org.eclipse.jetty.rhttp.loadtest.Loader</mainClass>
|
||
|
<classpathScope>runtime</classpathScope>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</profile>
|
||
|
<profile>
|
||
|
<id>server</id>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.codehaus.mojo</groupId>
|
||
|
<artifactId>exec-maven-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<mainClass>org.eclipse.jetty.rhttp.loadtest.Server</mainClass>
|
||
|
<classpathScope>runtime</classpathScope>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.eclipse.jetty</groupId>
|
||
|
<artifactId>reverse-http-gateway</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|