webidor/pom.xml
changeset 27 77ddbc4ecf78
child 28 77f6d8bf0d6c
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/webidor/pom.xml	Sat May 30 08:10:23 2009 +0200
     1.3 @@ -0,0 +1,112 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<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">
     1.6 +  <modelVersion>4.0.0</modelVersion>
     1.7 +  <parent>
     1.8 +        <artifactId>all-quoridor</artifactId>
     1.9 +        <groupId>org.apidesign</groupId>
    1.10 +        <version>1.0</version>
    1.11 +    </parent>
    1.12 +  <groupId>org.apidesign</groupId>
    1.13 +  <artifactId>webidor</artifactId>
    1.14 +  <packaging>war</packaging>
    1.15 +  <version>1.0</version>
    1.16 +  <name>webidor JEE5 Webapp</name>
    1.17 +  <url>http://maven.apache.org</url>
    1.18 +  <dependencies>
    1.19 +
    1.20 +    <dependency>
    1.21 +      <groupId>javax.servlet</groupId>
    1.22 +      <artifactId>servlet-api</artifactId>
    1.23 +      <version>2.5</version>
    1.24 +      <scope>provided</scope>
    1.25 +    </dependency>
    1.26 +
    1.27 +    <dependency>
    1.28 +      <groupId>javax.servlet.jsp</groupId>
    1.29 +      <artifactId>jsp-api</artifactId>
    1.30 +      <version>2.1</version>
    1.31 +      <scope>provided</scope>
    1.32 +    </dependency>
    1.33 +
    1.34 +    <dependency>
    1.35 +      <groupId>junit</groupId>
    1.36 +      <artifactId>junit</artifactId>
    1.37 +      <version>3.8.1</version>
    1.38 +      <scope>test</scope>
    1.39 +    </dependency>
    1.40 +    <dependency>
    1.41 +      <groupId>org.openid4java</groupId>
    1.42 +      <artifactId>openid4java</artifactId>
    1.43 +      <version>0.9.3</version>
    1.44 +    </dependency>
    1.45 +    <dependency>
    1.46 +      <groupId>org.springframework</groupId>
    1.47 +      <artifactId>spring-webmvc</artifactId>
    1.48 +      <version>2.5</version>
    1.49 +    </dependency>
    1.50 +    <dependency>
    1.51 +      <groupId>org.springframework</groupId>
    1.52 +      <artifactId>spring</artifactId>
    1.53 +      <version>2.5</version>
    1.54 +    </dependency>
    1.55 +    <dependency>
    1.56 +      <groupId>org.apache.struts</groupId>
    1.57 +      <artifactId>struts-core</artifactId>
    1.58 +      <version>1.3.8</version>
    1.59 +    </dependency>
    1.60 +    <dependency>
    1.61 +      <groupId>org.apache.struts</groupId>
    1.62 +      <artifactId>struts-el</artifactId>
    1.63 +      <version>1.3.8</version>
    1.64 +    </dependency>
    1.65 +    <dependency>
    1.66 +      <groupId>org.apache.struts</groupId>
    1.67 +      <artifactId>struts-extras</artifactId>
    1.68 +      <version>1.3.8</version>
    1.69 +    </dependency>
    1.70 +    <dependency>
    1.71 +      <groupId>org.apache.struts</groupId>
    1.72 +      <artifactId>struts-faces</artifactId>
    1.73 +      <version>1.3.8</version>
    1.74 +    </dependency>
    1.75 +    <dependency>
    1.76 +      <groupId>org.apache.struts</groupId>
    1.77 +      <artifactId>struts-mailreader-dao</artifactId>
    1.78 +      <version>1.3.8</version>
    1.79 +    </dependency>
    1.80 +    <dependency>
    1.81 +      <groupId>org.apache.struts</groupId>
    1.82 +      <artifactId>struts-scripting</artifactId>
    1.83 +      <version>1.3.8</version>
    1.84 +    </dependency>
    1.85 +    <dependency>
    1.86 +      <groupId>org.apache.struts</groupId>
    1.87 +      <artifactId>struts-taglib</artifactId>
    1.88 +      <version>1.3.8</version>
    1.89 +    </dependency>
    1.90 +    <dependency>
    1.91 +      <groupId>org.apache.struts</groupId>
    1.92 +      <artifactId>struts-tiles</artifactId>
    1.93 +      <version>1.3.8</version>
    1.94 +    </dependency>
    1.95 +  </dependencies>
    1.96 +  <build>
    1.97 +    <plugins>
    1.98 +      <plugin>
    1.99 +        <groupId>org.apache.maven.plugins</groupId>
   1.100 +        <artifactId>maven-compiler-plugin</artifactId>
   1.101 +        <version>2.0.2</version>
   1.102 +        <configuration>
   1.103 +          <source>1.5</source>
   1.104 +          <target>1.5</target>
   1.105 +        </configuration>
   1.106 +      </plugin>
   1.107 +    </plugins>
   1.108 +    <finalName>webidor</finalName>
   1.109 +  </build>
   1.110 +  <properties>
   1.111 +    <netbeans.hint.deploy.server>gfv3</netbeans.hint.deploy.server>
   1.112 +  </properties>
   1.113 +</project>
   1.114 +
   1.115 +