1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <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.springframework.security</groupId>
- <artifactId>spring-security-samples</artifactId>
- <version>3.0.3.CI-SNAPSHOT</version>
- </parent>
- <groupId>org.springframework.security</groupId>
- <artifactId>spring-security-samples-preauth</artifactId>
- <name>Spring Security - Preauthentication sample</name>
- <packaging>war</packaging>
- <dependencies>
- <dependency>
- <groupId>org.springframework.security</groupId>
- <artifactId>spring-security-core</artifactId>
- <version>${project.version}</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.security</groupId>
- <artifactId>spring-security-web</artifactId>
- <version>${project.version}</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.security</groupId>
- <artifactId>spring-security-config</artifactId>
- <version>${project.version}</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-jdbc</artifactId>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>maven-jetty-plugin</artifactId>
- <version>${jetty.version}</version>
- <configuration>
- <contextPath>/preauth</contextPath>
- <userRealms>
- <userRealm implementation="org.mortbay.jetty.security.HashUserRealm">
- <name>Preauth Realm</name>
- <config>realm.properties</config>
- </userRealm>
- </userRealms>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|