You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
172 lines
6.6 KiB
172 lines
6.6 KiB
<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> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-heavyduty</artifactId> |
|
<name>Spring Security - Heavy Duty Sample</name> |
|
<packaging>war</packaging> |
|
<version>2.0.3-SNAPSHOT</version> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-core</artifactId> |
|
<version>${spring.security.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-core-tiger</artifactId> |
|
<version>${spring.security.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-taglibs</artifactId> |
|
<version>${spring.security.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-core</artifactId> |
|
<version>${spring.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-context</artifactId> |
|
<version>${spring.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-web</artifactId> |
|
<version>${spring.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-webmvc</artifactId> |
|
<version>${spring.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-jdbc</artifactId> |
|
<scope>runtime</scope> |
|
<version>${spring.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-orm</artifactId> |
|
<version>${spring.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-aop</artifactId> |
|
<scope>runtime</scope> |
|
<version>${spring.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.freemarker</groupId> |
|
<artifactId>freemarker</artifactId> |
|
<scope>runtime</scope> |
|
<version>2.3.12</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>hsqldb</groupId> |
|
<artifactId>hsqldb</artifactId> |
|
<version>1.8.0.7</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.hibernate</groupId> |
|
<artifactId>hibernate-entitymanager</artifactId> |
|
<version>3.3.2.GA</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>net.sf.ehcache</groupId> |
|
<artifactId>ehcache</artifactId> |
|
<version>1.3.0</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.aspectj</groupId> |
|
<artifactId>aspectjweaver</artifactId> |
|
<optional>true</optional> |
|
<version>1.5.4</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.aspectj</groupId> |
|
<artifactId>aspectjrt</artifactId> |
|
<version>1.5.4</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.servlet</groupId> |
|
<artifactId>servlet-api</artifactId> |
|
<scope>provided</scope> |
|
<version>2.4</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.servlet</groupId> |
|
<artifactId>jstl</artifactId> |
|
<scope>runtime</scope> |
|
<version>1.1.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>taglibs</groupId> |
|
<artifactId>standard</artifactId> |
|
<scope>runtime</scope> |
|
<version>1.1.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>log4j</groupId> |
|
<artifactId>log4j</artifactId> |
|
<scope>runtime</scope> |
|
<version>1.2.14</version> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<configuration> |
|
<source>1.5</source> |
|
<target>1.5</target> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-eclipse-plugin</artifactId> |
|
<version>2.5.1</version> |
|
<configuration> |
|
<downloadSources>true</downloadSources> |
|
<wtpversion>2.0</wtpversion> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.mortbay.jetty</groupId> |
|
<artifactId>maven-jetty-plugin</artifactId> |
|
<version>6.1.7</version> |
|
<configuration> |
|
<contextPath>/heavyduty</contextPath> |
|
<connectors> |
|
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector"> |
|
<port>8080</port> |
|
<confidentialPort>8443</confidentialPort> |
|
</connector> |
|
<connector implementation="org.mortbay.jetty.security.SslSocketConnector"> |
|
<port>8443</port> |
|
<keystore>certificates/server.jks</keystore> |
|
<password>password</password> |
|
<keyPassword>password</keyPassword> |
|
<truststore>certificates/server.jks</truststore> |
|
<trustPassword>password</trustPassword> |
|
<wantClientAuth>true</wantClientAuth> |
|
<needClientAuth>false</needClientAuth> |
|
</connector> |
|
</connectors> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
<properties> |
|
<spring.version>2.5.4</spring.version> |
|
<spring.security.version>2.0.3-SNAPSHOT</spring.security.version> |
|
</properties> |
|
|
|
</project>
|
|
|