jetty-wadi-session-manager
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-wadi-session-manager</artifactId> <version>7.0.0.pre5</version> </dependency>
<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.mortbay.jetty</groupId> <artifactId>jetty-contrib-parent</artifactId> <version>7.0.0.pre5</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>jetty-wadi-session-manager</artifactId> <name>Jetty Contrib :: Wadi Session Cache</name> <repositories> <repository> <id>wadi-dependencies</id> <name>wadi dependencies</name> <layout>default</layout> <url>http://dist.codehaus.org/wadi/dependencies/maven2</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> <repository> <id>tribes</id> <name>tribes</name> <url>http://tomcat.apache.org/dev/dist/m2-repository</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>clean</id> <phase>clean</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <delete failonerror="false" includeemptydirs="true"> <fileset dir="../../../lib/wadi" includes="**/*.jar" /> <fileset dir="../../../lib/ext"> <include name="${project.artifactId}-${project.version}.jar" /> </fileset> </delete> <delete failonerror="false" file="../../../contexts-available/wadi.xml" /> </tasks> </configuration> </execution> <execution> <id>install</id> <phase>install</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <copy file="src/main/resources/wadi.xml" todir="../../../contexts-available" /> </tasks> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <phase>install</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j-version}</version> </artifactItem> <artifactItem> <groupId>org.slf4j</groupId> <artifactId>jcl104-over-slf4j</artifactId> <version>${slf4j-version}</version> </artifactItem> <artifactItem> <groupId>aspectj</groupId> <artifactId>aspectjrt</artifactId> <version>1.5.2a</version> </artifactItem> <artifactItem> <groupId>org.codehaus.wadi</groupId> <artifactId>wadi-aop</artifactId> <version>${wadi-version}</version> </artifactItem> <artifactItem> <groupId>org.codehaus.wadi</groupId> <artifactId>wadi-core</artifactId> <version>${wadi-version}</version> </artifactItem> <artifactItem> <groupId>org.codehaus.wadi</groupId> <artifactId>wadi-group</artifactId> <version>${wadi-version}</version> </artifactItem> <artifactItem> <groupId>org.codehaus.wadi</groupId> <artifactId>wadi-tribes</artifactId> <version>${wadi-version}</version> </artifactItem> <artifactItem> <groupId>backport-util-concurrent</groupId> <artifactId>backport-util-concurrent</artifactId> <version>${backport-utli-concurrent-version}</version> </artifactItem> <artifactItem> <groupId>cglib</groupId> <artifactId>cglib-nodep</artifactId> <version>${cglib-version}</version> </artifactItem> <artifactItem> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>${commons-codec-version}</version> </artifactItem> <artifactItem> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>${commons-httpclient-version}</version> </artifactItem> <artifactItem> <groupId>concurrent</groupId> <artifactId>concurrent</artifactId> <version>${concurrent-version}</version> </artifactItem> <artifactItem> <groupId>regexp</groupId> <artifactId>regexp</artifactId> <version>${regexp-version}</version> </artifactItem> <artifactItem> <groupId>org.apache.tomcat</groupId> <artifactId>tribes</artifactId> <version>${tribes-version}</version> </artifactItem> <artifactItem> <groupId>org.apache.tomcat</groupId> <artifactId>juli</artifactId> <version>${tribes-version}</version> </artifactItem> <artifactItem> <groupId>${project.groupId}</groupId> <artifactId>${project.artifactId}</artifactId> <version>${project.version}</version> </artifactItem> </artifactItems> <outputDirectory>${basedir}/../../../lib/wadi</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty</artifactId> <version>${jetty.version}</version> </dependency> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-webapp</artifactId> <version>${jetty.version}</version> </dependency> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-security</artifactId> <version>${jetty.version}</version> </dependency> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-util</artifactId> <version>${jetty.version}</version> </dependency> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>servlet-api</artifactId> <version>3.0.pre1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.codehaus.wadi</groupId> <artifactId>wadi-aop</artifactId> <version>${wadi-version}</version> </dependency> <dependency> <groupId>org.codehaus.wadi</groupId> <artifactId>wadi-core</artifactId> <version>${wadi-version}</version> </dependency> <dependency> <groupId>org.codehaus.wadi</groupId> <artifactId>wadi-group</artifactId> <version>${wadi-version}</version> </dependency> <dependency> <groupId>org.codehaus.wadi</groupId> <artifactId>wadi-tribes</artifactId> <version>${wadi-version}</version> </dependency> <dependency> <groupId>backport-util-concurrent</groupId> <artifactId>backport-util-concurrent</artifactId> <version>${backport-utli-concurrent-version}</version> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib-nodep</artifactId> <version>${cglib-version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>${commons-codec-version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>${commons-httpclient-version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>concurrent</groupId> <artifactId>concurrent</artifactId> <version>${concurrent-version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>regexp</groupId> <artifactId>regexp</artifactId> <version>${regexp-version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>tribes</artifactId> <version>${tribes-version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>juli</artifactId> <version>${tribes-version}</version> <scope>runtime</scope> </dependency> </dependencies> <properties> <slf4j-version>1.0.1</slf4j-version> <tribes-version>6.0.13</tribes-version> <regexp-version>1.3</regexp-version> <concurrent-version>1.3.4</concurrent-version> <commons-httpclient-version>3.0</commons-httpclient-version> <commons-codec-version>1.2</commons-codec-version> <cglib-version>2.1_3</cglib-version> <backport-utli-concurrent-version>2.2</backport-utli-concurrent-version> <wadi-version>2.0-M10</wadi-version> </properties> </project>