org.jbundle.util.webapp.cgi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.jbundle.util.webapp</groupId>
<artifactId>org.jbundle.util.webapp.cgi</artifactId>
<version>1.3.8</version>
</dependency><?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jbundle.util.webapp</groupId>
<artifactId>jbundle-util-webapp-reactor</artifactId>
<version>1.3.8</version>
</parent>
<artifactId>org.jbundle.util.webapp.cgi</artifactId>
<packaging>war</packaging>
<name>jbundle-util-webapp-cgi - cgi directory</name>
<description>This servlet will run a non-java web application as a servlet.
For example a perl application such as awstats can be run in a java server.</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<webResources>
<resource>
<!-- this is relative to the pom.xml directory -->
<directory>src/main/webapp</directory>
<filtering>true</filtering>
</resource>
</webResources>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-catalina</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.core</artifactId>
<scope>provided</scope> <!-- This better be provided -->
</dependency>
</dependencies>
</project>