lift-example
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.liftweb</groupId> <artifactId>lift-example</artifactId> <version>2.0-M4</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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>net.liftweb</groupId> <artifactId>examples</artifactId> <version>2.0-M4</version> </parent> <artifactId>lift-example</artifactId> <packaging>war</packaging> <name>Lift Standard Example</name> <dependencies> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.2.121</version> </dependency> <dependency> <groupId>org.scala-tools.testing</groupId> <artifactId>specs</artifactId> <version>1.6.1</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.7</version> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>lift-textile</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>lift-widgets</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>lift-wizard</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty</artifactId> <version>[6.1.6,7.0)</version> <scope>test</scope> </dependency> <dependency> <groupId>net.sourceforge.jwebunit</groupId> <artifactId>jwebunit-htmlunit-plugin</artifactId> <version>1.4.1</version> <scope>test</scope> <exclusions> <exclusion> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <!-- <plugin> <groupId>net.sf.alchim</groupId> <artifactId>winstone-maven-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>embed</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>net.sourceforge.winstone</groupId> <artifactId>winstone</artifactId> <version>0.9.10</version> </dependency> </dependencies> <configuration> <cmdLineOptions> <property> <name>ajp13Port</name> <value>-1</value> </property> </cmdLineOptions> </configuration> </plugin> --> </plugins> </build> </project>