webidor/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 30 May 2009 14:54:31 +0200
changeset 28 77f6d8bf0d6c
parent 27 77ddbc4ecf78
child 35 2e85dd878f04
permissions -rw-r--r--
Looks like there already is support for OpenID protocol in spring, so it is enough to use it
     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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     3   <modelVersion>4.0.0</modelVersion>
     4   <parent>
     5         <artifactId>all-quoridor</artifactId>
     6         <groupId>org.apidesign</groupId>
     7         <version>1.0</version>
     8     </parent>
     9   <groupId>org.apidesign</groupId>
    10   <artifactId>webidor</artifactId>
    11   <packaging>war</packaging>
    12   <version>1.0</version>
    13   <name>webidor JEE5 Webapp</name>
    14   <url>http://maven.apache.org</url>
    15   <dependencies>
    16 
    17     <dependency>
    18       <groupId>javax.servlet</groupId>
    19       <artifactId>servlet-api</artifactId>
    20       <version>2.5</version>
    21       <scope>provided</scope>
    22     </dependency>
    23 
    24     <dependency>
    25       <groupId>javax.servlet.jsp</groupId>
    26       <artifactId>jsp-api</artifactId>
    27       <version>2.1</version>
    28       <scope>provided</scope>
    29     </dependency>
    30 
    31     <dependency>
    32       <groupId>junit</groupId>
    33       <artifactId>junit</artifactId>
    34       <version>3.8.1</version>
    35       <scope>test</scope>
    36     </dependency>
    37     <dependency>
    38       <groupId>org.springframework</groupId>
    39       <artifactId>spring-webmvc</artifactId>
    40       <version>2.5</version>
    41     </dependency>
    42     <dependency>
    43       <groupId>org.springframework</groupId>
    44       <artifactId>spring</artifactId>
    45       <version>2.5</version>
    46     </dependency>
    47     <dependency>
    48       <groupId>org.springframework.security</groupId>
    49       <artifactId>spring-security-openid</artifactId>
    50       <version>2.0.4</version>
    51       <exclusions>
    52         <exclusion>
    53           <artifactId>icu4j</artifactId>
    54           <groupId>com.ibm.icu</groupId>
    55         </exclusion>
    56         <exclusion>
    57           <artifactId>xml-apis</artifactId>
    58           <groupId>xml-apis</groupId>
    59         </exclusion>
    60       </exclusions>
    61     </dependency>
    62   </dependencies>
    63   <build>
    64     <plugins>
    65       <plugin>
    66         <groupId>org.apache.maven.plugins</groupId>
    67         <artifactId>maven-compiler-plugin</artifactId>
    68         <version>2.0.2</version>
    69         <configuration>
    70           <source>1.5</source>
    71           <target>1.5</target>
    72         </configuration>
    73       </plugin>
    74     </plugins>
    75     <finalName>webidor</finalName>
    76   </build>
    77   <properties>
    78     <netbeans.hint.deploy.server>gfv3</netbeans.hint.deploy.server>
    79   </properties>
    80 </project>
    81 
    82 
    83 
    84 
    85