webidor/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Wed, 16 Sep 2009 22:28:11 +0200
branchdisplay-image
changeset 91 786df32c496b
parent 82 9ac7acee7d9f
permissions -rw-r--r--
First attempt to show the board as image
     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>jar</packaging>
    12   <version>1.1</version>
    13   <name>webidor server</name>
    14   <url>http://maven.apache.org</url>
    15   <repositories>
    16     <repository>
    17         <id>maven2-repository.dev.java.net</id>
    18         <name>Java.net Repository for Maven</name>
    19         <url>http://download.java.net/maven/2/</url>
    20         <layout>default</layout>
    21     </repository>
    22     <repository>
    23         <id>maven-repository.dev.java.net</id>
    24         <name>Java.net Maven 1 Repository (legacy)</name>
    25         <url>http://download.java.net/maven/1</url>
    26         <layout>legacy</layout>
    27     </repository>
    28   </repositories>
    29   <dependencies>
    30 
    31     <dependency>
    32       <groupId>junit</groupId>
    33       <artifactId>junit</artifactId>
    34       <version>4.5</version>
    35       <scope>test</scope>
    36     </dependency>
    37     <dependency>
    38       <groupId>com.sun.jersey</groupId>
    39       <artifactId>jersey-core</artifactId>
    40       <version>1.1.0-ea</version>
    41     </dependency>
    42     <dependency>
    43       <groupId>com.sun.jersey</groupId>
    44       <artifactId>jersey-server</artifactId>
    45       <version>1.1.0-ea</version>
    46     </dependency>
    47     <dependency>
    48       <groupId>com.sun.jersey</groupId>
    49       <artifactId>jersey-json</artifactId>
    50       <version>1.1.0-ea</version>
    51       <type>jar</type>
    52       <exclusions>
    53         <exclusion>
    54           <artifactId>jaxb-api</artifactId>
    55           <groupId>javax.xml.bind</groupId>
    56         </exclusion>
    57         <exclusion>
    58           <artifactId>stax-api</artifactId>
    59           <groupId>stax</groupId>
    60         </exclusion>
    61       </exclusions>
    62     </dependency>
    63     <dependency>
    64       <groupId>com.sun.jersey.test.framework</groupId>
    65       <artifactId>jersey-test-framework</artifactId>
    66       <version>1.1.0-ea</version>
    67       <scope>test</scope>
    68     </dependency>
    69     <dependency>
    70       <groupId>org.apidesign</groupId>
    71       <artifactId>quoridor</artifactId>
    72       <version>1.0</version>
    73       <type>jar</type>
    74     </dependency>
    75     <dependency>
    76       <groupId>${project.groupId}</groupId>
    77       <artifactId>visidor</artifactId>
    78       <version>1.0</version>
    79     </dependency>
    80   </dependencies>
    81   <build>
    82     <plugins>
    83       <plugin>
    84         <groupId>org.apache.maven.plugins</groupId>
    85         <artifactId>maven-compiler-plugin</artifactId>
    86         <version>2.0.2</version>
    87         <configuration>
    88           <source>1.5</source>
    89           <target>1.5</target>
    90         </configuration>
    91       </plugin>
    92       <plugin>
    93         <groupId>org.codehaus.mojo</groupId>
    94         <artifactId>exec-maven-plugin</artifactId>
    95         <configuration>
    96             <mainClass>cz.xelfi.quoridor.webidor.Quoridor</mainClass>
    97         </configuration>
    98       </plugin>
    99     </plugins>
   100     <finalName>webidor</finalName>
   101   </build>
   102 </project>
   103 
   104 
   105