116 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			116 lines
		
	
	
		
			4.2 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>org.mitre</groupId>    
 | |
|     <artifactId>openid-connect-server</artifactId>
 | |
|     <version>0.1-SNAPSHOT</version>
 | |
|     <name>OpenIdConnect Server</name>
 | |
|     <packaging>war</packaging>
 | |
|     <parent>
 | |
|     	<groupId>org.mitre</groupId>
 | |
|     	<artifactId>openid-connect-parent</artifactId>
 | |
|     	<version>0.1-SNAPSHOT</version>
 | |
|     	<relativePath>..</relativePath>
 | |
|     </parent>
 | |
|     <dependencies>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.security.oauth</groupId>
 | |
| 			<version>1.0.0.BUILD-SNAPSHOT</version>
 | |
| 			<artifactId>spring-security-oauth2</artifactId>
 | |
| 		</dependency>  
 | |
| 		<dependency>
 | |
| 			<groupId>org.mitre</groupId>
 | |
| 			<artifactId>openid-connect-common</artifactId>
 | |
| 			<version>0.1-SNAPSHOT</version>
 | |
| 		</dependency>
 | |
|     </dependencies>
 | |
|     <description>Reference implementation of OpenID Connect spec (http://openid.net/connect/).
 | |
|     </description>
 | |
|     <url></url>
 | |
|     <build>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-compiler-plugin</artifactId>
 | |
|                 <configuration>
 | |
|                     <source>${java-version}</source>
 | |
|                     <target>${java-version}</target>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-war-plugin</artifactId>
 | |
|                 <executions>
 | |
| 					<execution>
 | |
| 						<id>prepare-war</id>
 | |
| 						<phase>prepare-package</phase>
 | |
| 						<goals>
 | |
| 							<goal>exploded</goal>
 | |
| 						</goals>
 | |
| 					</execution>
 | |
| 				</executions>
 | |
|                 <configuration>
 | |
|                     <warName>openid-connect-server</warName>
 | |
|                     <useCache>true</useCache>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-dependency-plugin</artifactId>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <id>install</id>
 | |
|                         <phase>install</phase>
 | |
|                         <goals>
 | |
|                             <goal>sources</goal>
 | |
|                         </goals>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|             </plugin>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-surefire-plugin</artifactId>
 | |
|                 <configuration>
 | |
|                     <junitArtifactName>junit:junit</junitArtifactName>
 | |
|                     <excludes>
 | |
|                         <exclude>**/*_Roo_*</exclude>
 | |
|                     </excludes>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|             <plugin>
 | |
|                 <groupId>org.codehaus.mojo</groupId>
 | |
|                 <artifactId>tomcat-maven-plugin</artifactId>
 | |
|                 <version>1.0-beta-1</version>
 | |
|             </plugin>
 | |
|             <plugin>
 | |
|                 <groupId>org.codehaus.mojo</groupId>
 | |
|                 <artifactId>cobertura-maven-plugin</artifactId>
 | |
|                 <version>2.4</version>
 | |
|                 <configuration>
 | |
|                     <formats>
 | |
|                         <format>xml</format>
 | |
|                     </formats>
 | |
|                     <instrumentation>
 | |
|                         <ignores>
 | |
|                             <ignore>org.apache.log4j.*</ignore>
 | |
|                         </ignores>
 | |
|                         <excludes>
 | |
|                             <!-- <exclude>org/mitre/openid/**/model/**/*.class</exclude> -->
 | |
|                         </excludes>
 | |
|                     </instrumentation>
 | |
|                 </configuration>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <id>cobertura</id>
 | |
|                         <phase>package</phase>
 | |
|                         <goals>
 | |
|                             <goal>cobertura</goal>
 | |
|                         </goals>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|             </plugin>            
 | |
|         </plugins>
 | |
|     </build>
 | |
| </project>
 |