104 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <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/xsd/maven-4.0.0.xsd">
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
|     <groupId>org.baeldung</groupId>
 | |
|     <artifactId>spring-security-oauth</artifactId>
 | |
|     <version>1.0.0-SNAPSHOT</version>
 | |
| 
 | |
|     <name>spring-security-oauth</name>
 | |
|     <packaging>pom</packaging>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>org.springframework.boot</groupId>
 | |
|         <artifactId>spring-boot-starter-parent</artifactId>
 | |
|         <version>1.3.1.RELEASE</version>
 | |
|     </parent>
 | |
|         
 | |
|     <modules>
 | |
|         <module>spring-security-oauth-server</module>
 | |
|         <module>spring-security-oauth-resource</module>
 | |
|         <module>spring-security-oauth-ui-implicit</module>
 | |
|         <module>spring-security-oauth-ui-password</module>
 | |
|     </modules>
 | |
| 
 | |
|     <build>
 | |
|         <finalName>spring-security-oauth</finalName>
 | |
|         <pluginManagement>
 | |
|             <plugins>
 | |
| 
 | |
|                 <plugin>
 | |
|                     <groupId>org.apache.maven.plugins</groupId>
 | |
|                     <artifactId>maven-compiler-plugin</artifactId>
 | |
|                     <version>${maven-compiler-plugin.version}</version>
 | |
|                     <configuration>
 | |
|                         <source>1.8</source>
 | |
|                         <target>1.8</target>
 | |
|                     </configuration>
 | |
|                 </plugin>
 | |
| 
 | |
|                 <plugin>
 | |
|                     <groupId>org.apache.maven.plugins</groupId>
 | |
|                     <artifactId>maven-war-plugin</artifactId>
 | |
|                     <version>${maven-war-plugin.version}</version>
 | |
|                     <configuration>
 | |
|                         <failOnMissingWebXml>false</failOnMissingWebXml>
 | |
|                     </configuration>
 | |
|                 </plugin>
 | |
| 
 | |
|                 <plugin>
 | |
|                     <groupId>org.apache.maven.plugins</groupId>
 | |
|                     <artifactId>maven-surefire-plugin</artifactId>
 | |
|                     <version>${maven-surefire-plugin.version}</version>
 | |
|                     <configuration>
 | |
|                         <testFailureIgnore>true</testFailureIgnore>
 | |
|                         <excludes>
 | |
|                             <exclude>**/*IntegrationTest.java</exclude>
 | |
|                             <exclude>**/*LiveTest.java</exclude>
 | |
|                         </excludes>
 | |
|                         <systemPropertyVariables>
 | |
|                             <!-- <provPersistenceTarget>h2</provPersistenceTarget> -->
 | |
|                         </systemPropertyVariables>
 | |
|                     </configuration>
 | |
|                 </plugin>
 | |
| 
 | |
|             </plugins>
 | |
|         </pluginManagement>
 | |
|     </build>
 | |
| 
 | |
| 
 | |
|     <properties>
 | |
|         <!-- Spring -->
 | |
|         <org.springframework.version>4.2.2.RELEASE</org.springframework.version>
 | |
|         <org.springframework.security.version>4.0.3.RELEASE</org.springframework.security.version>
 | |
|         <oauth.version>2.0.7.RELEASE</oauth.version>
 | |
| 
 | |
|         <!-- marshalling -->
 | |
| 
 | |
|         <jackson.version>2.5.1</jackson.version>
 | |
| 
 | |
|         <!-- logging -->
 | |
|         <org.slf4j.version>1.7.12</org.slf4j.version>
 | |
|         <logback.version>1.1.3</logback.version>
 | |
| 
 | |
|         <!-- util -->
 | |
|         <guava.version>18.0</guava.version>
 | |
|         <commons-lang3.version>3.3.2</commons-lang3.version>
 | |
| 
 | |
|         <!-- testing -->
 | |
|         <org.hamcrest.version>1.3</org.hamcrest.version>
 | |
|         <junit.version>4.11</junit.version>
 | |
|         <mockito.version>1.10.19</mockito.version>
 | |
| 
 | |
|         <httpcore.version>4.4</httpcore.version>
 | |
|         <httpclient.version>4.4</httpclient.version>
 | |
| 
 | |
|         <rest-assured.version>2.4.0</rest-assured.version>
 | |
| 
 | |
|         <!-- Maven plugins -->
 | |
|         <maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
 | |
|         <maven-war-plugin.version>2.6</maven-war-plugin.version>
 | |
|         <maven-surefire-plugin.version>2.19</maven-surefire-plugin.version>
 | |
|         <cargo-maven2-plugin.version>1.4.16</cargo-maven2-plugin.version>
 | |
| 
 | |
|     </properties>
 | |
| 
 | |
| </project> |