Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jetty-rhttp/jetty-rhttp-loadtest/pom.xml')
-rw-r--r--jetty-rhttp/jetty-rhttp-loadtest/pom.xml58
1 files changed, 0 insertions, 58 deletions
diff --git a/jetty-rhttp/jetty-rhttp-loadtest/pom.xml b/jetty-rhttp/jetty-rhttp-loadtest/pom.xml
deleted file mode 100644
index bd36d4ebde..0000000000
--- a/jetty-rhttp/jetty-rhttp-loadtest/pom.xml
+++ /dev/null
@@ -1,58 +0,0 @@
-<?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>

Back to the top