|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + <groupId>org.baeldung</groupId> |
| 6 | + <artifactId>spring-security-login-error-handling</artifactId> |
| 7 | + <name>spring-security-login-error-handling</name> |
| 8 | + <packaging>war</packaging> |
| 9 | + <version>1.0.0-BUILD-SNAPSHOT</version> |
| 10 | + |
| 11 | + <parent> |
| 12 | + <groupId>org.springframework.boot</groupId> |
| 13 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 14 | + <version>1.1.4.RELEASE</version> |
| 15 | + </parent> |
| 16 | + |
| 17 | + <dependencies> |
| 18 | + |
| 19 | + <!-- Spring --> |
| 20 | + <dependency> |
| 21 | + <groupId>org.springframework.boot</groupId> |
| 22 | + <artifactId>spring-boot-starter-web</artifactId> |
| 23 | + </dependency> |
| 24 | + <dependency> |
| 25 | + <groupId>org.springframework</groupId> |
| 26 | + <artifactId>spring-context</artifactId> |
| 27 | + <exclusions> |
| 28 | + <!-- Exclude Commons Logging in favor of SLF4j --> |
| 29 | + <exclusion> |
| 30 | + <groupId>commons-logging</groupId> |
| 31 | + <artifactId>commons-logging</artifactId> |
| 32 | + </exclusion> |
| 33 | + </exclusions> |
| 34 | + </dependency> |
| 35 | + <dependency> |
| 36 | + <groupId>org.springframework</groupId> |
| 37 | + <artifactId>spring-core</artifactId> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>org.springframework</groupId> |
| 41 | + <artifactId>spring-webmvc</artifactId> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>org.springframework</groupId> |
| 45 | + <artifactId>spring-jdbc</artifactId> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>org.springframework</groupId> |
| 49 | + <artifactId>spring-beans</artifactId> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.springframework</groupId> |
| 53 | + <artifactId>spring-aop</artifactId> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>org.springframework</groupId> |
| 57 | + <artifactId>spring-tx</artifactId> |
| 58 | + </dependency> |
| 59 | + <dependency> |
| 60 | + <groupId>org.springframework</groupId> |
| 61 | + <artifactId>spring-expression</artifactId> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>org.springframework</groupId> |
| 65 | + <artifactId>spring-web</artifactId> |
| 66 | + </dependency> |
| 67 | + <dependency> |
| 68 | + <groupId>org.springframework</groupId> |
| 69 | + <artifactId>spring-webmvc</artifactId> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>org.springframework.security</groupId> |
| 73 | + <artifactId>spring-security-config</artifactId> |
| 74 | + <scope>runtime</scope> |
| 75 | + </dependency> |
| 76 | + |
| 77 | + <!-- AspectJ --> |
| 78 | + <dependency> |
| 79 | + <groupId>org.aspectj</groupId> |
| 80 | + <artifactId>aspectjrt</artifactId> |
| 81 | + </dependency> |
| 82 | + |
| 83 | + <!-- Validation --> |
| 84 | + <dependency> |
| 85 | + <groupId>org.hibernate</groupId> |
| 86 | + <artifactId>hibernate-validator</artifactId> |
| 87 | + </dependency> |
| 88 | + |
| 89 | + <!-- logging --> |
| 90 | + <dependency> |
| 91 | + <groupId>org.slf4j</groupId> |
| 92 | + <artifactId>slf4j-api</artifactId> |
| 93 | + </dependency> |
| 94 | + <dependency> |
| 95 | + <groupId>ch.qos.logback</groupId> |
| 96 | + <artifactId>logback-classic</artifactId> |
| 97 | + <!-- <scope>runtime</scope> --> |
| 98 | + </dependency> |
| 99 | + <dependency> |
| 100 | + <groupId>org.slf4j</groupId> |
| 101 | + <artifactId>jcl-over-slf4j</artifactId> |
| 102 | + <!-- <scope>runtime</scope> --> <!-- some spring dependencies need to compile against jcl --> |
| 103 | + </dependency> |
| 104 | + <dependency> <!-- needed to bridge to slf4j for projects that use the log4j APIs directly --> |
| 105 | + <groupId>org.slf4j</groupId> |
| 106 | + <artifactId>log4j-over-slf4j</artifactId> |
| 107 | + </dependency> |
| 108 | + |
| 109 | + <!-- @Inject --> |
| 110 | + <dependency> |
| 111 | + <groupId>javax.inject</groupId> |
| 112 | + <artifactId>javax.inject</artifactId> |
| 113 | + <version>1</version> |
| 114 | + </dependency> |
| 115 | + |
| 116 | + <!-- Servlet --> |
| 117 | + <dependency> |
| 118 | + <groupId>javax.servlet</groupId> |
| 119 | + <artifactId>javax.servlet-api</artifactId> |
| 120 | + </dependency> |
| 121 | + <dependency> |
| 122 | + <groupId>javax.servlet.jsp</groupId> |
| 123 | + <artifactId>jsp-api</artifactId> |
| 124 | + <version>2.1</version> |
| 125 | + <scope>provided</scope> |
| 126 | + </dependency> |
| 127 | + <dependency> |
| 128 | + <groupId>javax.servlet</groupId> |
| 129 | + <artifactId>jstl</artifactId> |
| 130 | + </dependency> |
| 131 | + |
| 132 | + <!-- Taglibs --> |
| 133 | + <dependency> |
| 134 | + <groupId>org.springframework.security</groupId> |
| 135 | + <artifactId>spring-security-taglibs</artifactId> |
| 136 | + </dependency> |
| 137 | + |
| 138 | + <!-- Test --> |
| 139 | + <dependency> |
| 140 | + <groupId>junit</groupId> |
| 141 | + <artifactId>junit</artifactId> |
| 142 | + <scope>test</scope> |
| 143 | + </dependency> |
| 144 | + |
| 145 | + </dependencies> |
| 146 | + |
| 147 | + <build> |
| 148 | + <finalName>spring-security-login-and-registration</finalName> |
| 149 | + <resources> |
| 150 | + <resource> |
| 151 | + <directory>src/main/resources</directory> |
| 152 | + <filtering>true</filtering> |
| 153 | + </resource> |
| 154 | + </resources> |
| 155 | + |
| 156 | + <plugins> |
| 157 | + <plugin> |
| 158 | + <groupId>org.apache.maven.plugins</groupId> |
| 159 | + <artifactId>maven-compiler-plugin</artifactId> |
| 160 | + </plugin> |
| 161 | + <plugin> |
| 162 | + <groupId>org.apache.maven.plugins</groupId> |
| 163 | + <artifactId>maven-war-plugin</artifactId> |
| 164 | + </plugin> |
| 165 | + </plugins> |
| 166 | + </build> |
| 167 | + <properties> |
| 168 | + <java-version>1.7</java-version> |
| 169 | + <org.springframework-version>3.1.1.RELEASE</org.springframework-version> |
| 170 | + <org.springframework.security.version>3.2.4.RELEASE</org.springframework.security.version> |
| 171 | + <org.aspectj-version>1.6.10</org.aspectj-version> |
| 172 | + |
| 173 | + <!-- logging --> |
| 174 | + <org.slf4j.version>1.7.6</org.slf4j.version> |
| 175 | + <logback.version>1.1.1</logback.version> |
| 176 | + |
| 177 | + </properties> |
| 178 | + |
| 179 | +</project> |
0 commit comments