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
jtulach@27
     1
<?xml version="1.0" encoding="UTF-8"?>
jtulach@27
     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">
jtulach@27
     3
  <modelVersion>4.0.0</modelVersion>
jtulach@27
     4
  <parent>
jtulach@27
     5
        <artifactId>all-quoridor</artifactId>
jtulach@27
     6
        <groupId>org.apidesign</groupId>
jtulach@27
     7
        <version>1.0</version>
jtulach@27
     8
    </parent>
jtulach@27
     9
  <groupId>org.apidesign</groupId>
jtulach@27
    10
  <artifactId>webidor</artifactId>
jtulach@27
    11
  <packaging>war</packaging>
jtulach@27
    12
  <version>1.0</version>
jtulach@27
    13
  <name>webidor JEE5 Webapp</name>
jtulach@27
    14
  <url>http://maven.apache.org</url>
jtulach@27
    15
  <dependencies>
jtulach@27
    16
jtulach@27
    17
    <dependency>
jtulach@27
    18
      <groupId>javax.servlet</groupId>
jtulach@27
    19
      <artifactId>servlet-api</artifactId>
jtulach@27
    20
      <version>2.5</version>
jtulach@27
    21
      <scope>provided</scope>
jtulach@27
    22
    </dependency>
jtulach@27
    23
jtulach@27
    24
    <dependency>
jtulach@27
    25
      <groupId>javax.servlet.jsp</groupId>
jtulach@27
    26
      <artifactId>jsp-api</artifactId>
jtulach@27
    27
      <version>2.1</version>
jtulach@27
    28
      <scope>provided</scope>
jtulach@27
    29
    </dependency>
jtulach@27
    30
jtulach@27
    31
    <dependency>
jtulach@27
    32
      <groupId>junit</groupId>
jtulach@27
    33
      <artifactId>junit</artifactId>
jtulach@27
    34
      <version>3.8.1</version>
jtulach@27
    35
      <scope>test</scope>
jtulach@27
    36
    </dependency>
jtulach@27
    37
    <dependency>
jtulach@27
    38
      <groupId>org.springframework</groupId>
jtulach@27
    39
      <artifactId>spring-webmvc</artifactId>
jtulach@27
    40
      <version>2.5</version>
jtulach@27
    41
    </dependency>
jtulach@27
    42
    <dependency>
jtulach@27
    43
      <groupId>org.springframework</groupId>
jtulach@27
    44
      <artifactId>spring</artifactId>
jtulach@27
    45
      <version>2.5</version>
jtulach@27
    46
    </dependency>
jtulach@27
    47
    <dependency>
jtulach@28
    48
      <groupId>org.springframework.security</groupId>
jtulach@28
    49
      <artifactId>spring-security-openid</artifactId>
jtulach@28
    50
      <version>2.0.4</version>
jtulach@28
    51
      <exclusions>
jtulach@28
    52
        <exclusion>
jtulach@28
    53
          <artifactId>icu4j</artifactId>
jtulach@28
    54
          <groupId>com.ibm.icu</groupId>
jtulach@28
    55
        </exclusion>
jtulach@28
    56
        <exclusion>
jtulach@28
    57
          <artifactId>xml-apis</artifactId>
jtulach@28
    58
          <groupId>xml-apis</groupId>
jtulach@28
    59
        </exclusion>
jtulach@28
    60
      </exclusions>
jtulach@27
    61
    </dependency>
jtulach@27
    62
  </dependencies>
jtulach@27
    63
  <build>
jtulach@27
    64
    <plugins>
jtulach@27
    65
      <plugin>
jtulach@27
    66
        <groupId>org.apache.maven.plugins</groupId>
jtulach@27
    67
        <artifactId>maven-compiler-plugin</artifactId>
jtulach@27
    68
        <version>2.0.2</version>
jtulach@27
    69
        <configuration>
jtulach@27
    70
          <source>1.5</source>
jtulach@27
    71
          <target>1.5</target>
jtulach@27
    72
        </configuration>
jtulach@27
    73
      </plugin>
jtulach@27
    74
    </plugins>
jtulach@27
    75
    <finalName>webidor</finalName>
jtulach@27
    76
  </build>
jtulach@27
    77
  <properties>
jtulach@27
    78
    <netbeans.hint.deploy.server>gfv3</netbeans.hint.deploy.server>
jtulach@27
    79
  </properties>
jtulach@27
    80
</project>
jtulach@27
    81
jtulach@27
    82
jtulach@28
    83
jtulach@28
    84
jtulach@28
    85