238 lines
		
	
	
		
			8.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			238 lines
		
	
	
		
			8.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?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>
 | |
| 
 | |
|     <groupId>com.baeldung</groupId>
 | |
|     <artifactId>spring-static-resources</artifactId>
 | |
|     <version>0.1.0-SNAPSHOT</version>
 | |
|     <packaging>war</packaging>
 | |
| 
 | |
|     <name>spring-static-resources</name>
 | |
| 
 | |
|     <dependencies>
 | |
|         <!-- Spring Security -->
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.security</groupId>
 | |
|             <artifactId>spring-security-web</artifactId>
 | |
|             <version>${org.springframework.security.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.security</groupId>
 | |
|             <artifactId>spring-security-config</artifactId>
 | |
|             <version>${org.springframework.security.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.security</groupId>
 | |
|             <artifactId>spring-security-taglibs</artifactId>
 | |
|             <version>${org.springframework.security.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <!-- Spring -->
 | |
|         <dependency>
 | |
|             <groupId>org.springframework</groupId>
 | |
|             <artifactId>spring-core</artifactId>
 | |
|             <version>${org.springframework.version}</version>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <artifactId>commons-logging</artifactId>
 | |
|                     <groupId>commons-logging</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework</groupId>
 | |
|             <artifactId>spring-context</artifactId>
 | |
|             <version>${org.springframework.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework</groupId>
 | |
|             <artifactId>spring-jdbc</artifactId>
 | |
|             <version>${org.springframework.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework</groupId>
 | |
|             <artifactId>spring-beans</artifactId>
 | |
|             <version>${org.springframework.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework</groupId>
 | |
|             <artifactId>spring-aop</artifactId>
 | |
|             <version>${org.springframework.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework</groupId>
 | |
|             <artifactId>spring-tx</artifactId>
 | |
|             <version>${org.springframework.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework</groupId>
 | |
|             <artifactId>spring-expression</artifactId>
 | |
|             <version>${org.springframework.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.springframework</groupId>
 | |
|             <artifactId>spring-web</artifactId>
 | |
|             <version>${org.springframework.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework</groupId>
 | |
|             <artifactId>spring-webmvc</artifactId>
 | |
|             <version>${org.springframework.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <!-- AOP -->
 | |
|         <dependency>
 | |
|             <groupId>org.aspectj</groupId>
 | |
|             <artifactId>aspectjrt</artifactId>
 | |
|             <version>${org.aspectj-version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>javax.inject</groupId>
 | |
|             <artifactId>javax.inject</artifactId>
 | |
|             <version>${inject.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <!-- Servlet -->
 | |
|         <dependency>
 | |
|             <groupId>javax.servlet</groupId>
 | |
|             <artifactId>javax.servlet-api</artifactId>
 | |
|             <version>${javax.servlet-api.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>javax.servlet.jsp</groupId>
 | |
|             <artifactId>javax.servlet.jsp-api</artifactId>
 | |
|             <version>${javax.servlet.jsp-api.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>javax.servlet</groupId>
 | |
|             <artifactId>jstl</artifactId>
 | |
|             <version>${jstl.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.fasterxml.jackson.core</groupId>
 | |
|             <artifactId>jackson-databind</artifactId>
 | |
|             <version>${jackson.version}</version>
 | |
|         </dependency>
 | |
|         
 | |
|         <dependency>
 | |
|             <groupId>org.hibernate</groupId>
 | |
|             <artifactId>hibernate-validator</artifactId>
 | |
|             <version>${hibernate-validator.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <!-- Joda Time Library -->
 | |
|         <dependency>
 | |
|             <groupId>joda-time</groupId>
 | |
|             <artifactId>joda-time</artifactId>
 | |
|             <version>${joda-time.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <!-- Handlebars.java -->
 | |
|         <dependency>
 | |
|             <groupId>com.github.jknack</groupId>
 | |
|             <artifactId>handlebars</artifactId>
 | |
|             <version>${handlebars.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <!-- logging -->
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.slf4j</groupId>
 | |
|             <artifactId>slf4j-api</artifactId>
 | |
|             <version>${org.slf4j.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>ch.qos.logback</groupId>
 | |
|             <artifactId>logback-classic</artifactId>
 | |
|             <version>${logback.version}</version>
 | |
|             <!-- <scope>runtime</scope> -->
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.slf4j</groupId>
 | |
|             <artifactId>jcl-over-slf4j</artifactId>
 | |
|             <version>${org.slf4j.version}</version>
 | |
|             <!-- <scope>runtime</scope> --> <!-- some spring dependencies need to compile against jcl -->
 | |
|         </dependency>
 | |
|         <dependency> <!-- needed to bridge to slf4j for projects that use the log4j APIs directly -->
 | |
|             <groupId>org.slf4j</groupId>
 | |
|             <artifactId>log4j-over-slf4j</artifactId>
 | |
|             <version>${org.slf4j.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|     </dependencies>
 | |
| 
 | |
|     <build>
 | |
|         <finalName>spring-static-resources</finalName>
 | |
|         <resources>
 | |
|             <resource>
 | |
|                 <directory>src/main/resources</directory>
 | |
|                 <filtering>true</filtering>
 | |
|             </resource>
 | |
|         </resources>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>net.alchim31.maven</groupId>
 | |
|                 <artifactId>yuicompressor-maven-plugin</artifactId>
 | |
|                 <version>${yuicompressor-maven-plugin.version}</version>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <goals>
 | |
|                             <goal>compress</goal>
 | |
|                         </goals>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|                 <configuration>
 | |
|                     <nosuffix>true</nosuffix>
 | |
|                     <webappDirectory>${project.build.directory}/min</webappDirectory>
 | |
|                     <excludes>
 | |
|                         <exclude>**/*.min.js</exclude>
 | |
|                         <exclude>**/handlebars-3133af2.js</exclude>
 | |
|                         <exclude>**/require.js</exclude>
 | |
|                     </excludes>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|             <plugin>
 | |
|                 <artifactId>maven-war-plugin</artifactId>
 | |
|                 <configuration>
 | |
|                     <webResources>
 | |
|                         <resource>
 | |
|                             <directory>${project.build.directory}/min</directory>
 | |
|                         </resource>
 | |
|                     </webResources>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
|     <properties>
 | |
|         <java-version>1.8</java-version>
 | |
| 
 | |
|         <!-- Spring -->
 | |
|         <org.springframework.version>4.3.4.RELEASE</org.springframework.version>
 | |
|         <org.springframework.security.version>4.2.0.RELEASE</org.springframework.security.version>
 | |
| 
 | |
|         <org.aspectj-version>1.8.9</org.aspectj-version>
 | |
|         <javax.servlet.jsp-api.version>2.3.2-b02</javax.servlet.jsp-api.version>
 | |
| 
 | |
|         <!-- marshalling -->
 | |
|         <jackson.version>2.8.5</jackson.version>
 | |
| 
 | |
|         <!-- logging -->
 | |
|         <org.slf4j.version>1.7.21</org.slf4j.version>
 | |
|         <logback.version>1.1.7</logback.version>
 | |
| 
 | |
|         <!-- various 1.3.2-->
 | |
|         <hibernate-validator.version>5.3.3.Final</hibernate-validator.version>
 | |
|         <handlebars.version>4.0.6</handlebars.version>
 | |
|         <joda-time.version>2.9.6</joda-time.version>
 | |
|         <jstl.version>1.2</jstl.version>
 | |
|         <javax.servlet-api.version>3.1.0</javax.servlet-api.version>
 | |
|         <inject.version>1</inject.version>
 | |
| 
 | |
|         <!-- Maven plugins -->
 | |
|         <yuicompressor-maven-plugin.version>1.5.1</yuicompressor-maven-plugin.version>
 | |
|     </properties>
 | |
| 
 | |
| </project> |