Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimone Bordet2014-03-14 10:35:54 +0000
committerSimone Bordet2014-03-14 10:35:54 +0000
commit2f2d6bc538c56239b85e225bfe2f988ee1b0ae70 (patch)
treeccaa28235ede4c96cd4013dd5677a1028df06ead /jetty-fcgi/fcgi-client/pom.xml
parent24b9270499494af32a2ca172fb8990521f405818 (diff)
downloadorg.eclipse.jetty.project-2f2d6bc538c56239b85e225bfe2f988ee1b0ae70.tar.gz
org.eclipse.jetty.project-2f2d6bc538c56239b85e225bfe2f988ee1b0ae70.tar.xz
org.eclipse.jetty.project-2f2d6bc538c56239b85e225bfe2f988ee1b0ae70.zip
Refactored FastCGI module into just two modules, client (for usage of
a standalone FCGI client) and server.
Diffstat (limited to 'jetty-fcgi/fcgi-client/pom.xml')
-rw-r--r--jetty-fcgi/fcgi-client/pom.xml42
1 files changed, 42 insertions, 0 deletions
diff --git a/jetty-fcgi/fcgi-client/pom.xml b/jetty-fcgi/fcgi-client/pom.xml
new file mode 100644
index 0000000000..4844b233ec
--- /dev/null
+++ b/jetty-fcgi/fcgi-client/pom.xml
@@ -0,0 +1,42 @@
+<?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/maven-v4_0_0.xsd">
+ <parent>
+ <groupId>org.eclipse.jetty.fcgi</groupId>
+ <artifactId>fcgi-parent</artifactId>
+ <version>9.1.4-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>fcgi-client</artifactId>
+ <name>Jetty :: FastCGI :: Client</name>
+
+ <properties>
+ <bundle-symbolic-name>${project.groupId}.client</bundle-symbolic-name>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-util</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-io</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-http</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-client</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+
+</project>

Back to the top