webapp-accessctl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.ontopia</groupId> <artifactId>webapp-accessctl</artifactId> <version>5.5.0</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>net.ontopia</groupId> <artifactId>ontopia-parent</artifactId> <version>5.5.0</version> </parent> <artifactId>webapp-accessctl</artifactId> <packaging>war</packaging> <name>Ontopia Access Control webapplication</name> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ontopia-navigator</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-reload4j</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>httpunit</groupId> <artifactId>httpunit</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> </dependency> <dependency> <groupId>taglibs</groupId> <artifactId>standard</artifactId> </dependency> </dependencies> <build> <finalName>accessctl</finalName> <plugins> <plugin> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-jspc-maven-plugin</artifactId> </plugin> <plugin> <artifactId>maven-war-plugin</artifactId> <configuration> <webXml>${basedir}/src/main/webapp/WEB-INF/web.xml</webXml> </configuration> </plugin> <!-- disable test running because the tests are not working in httpunit --> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests> </configuration> </plugin> <!--plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> <configuration> <webAppSourceDirectory>${basedir}/src/main/webapp</webAppSourceDirectory> <contextPath>accessctl</contextPath> <useTestClasspath>true</useTestClasspath> <stopKey>foo</stopKey> <stopPort>9999</stopPort> <userRealms> <userRealm implementation="org.mortbay.jetty.security.HashUserRealm"> <name>Form-Based Authenticiation Area</name> <config>${basedir}/src/test/resources/realm.properties</config> </userRealm> </userRealms> </configuration> <executions> <execution> <id>start-jetty</id> <phase>test-compile</phase> <goals> <goal>run</goal> </goals> <configuration> <daemon>true</daemon> </configuration> </execution> <execution> <id>stop-jetty</id> <phase>test</phase> <goals> <goal>stop</goal> </goals> </execution> </executions> </plugin--> </plugins> </build> </project>