visidor/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 07 Jan 2010 23:08:06 +0100
branchstatistics-and-elo
changeset 181 e3fb438103e0
child 186 47e21a031490
permissions -rw-r--r--
Test to verify behaviour of getCode and valueOf
     1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     2   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   <groupId>org.apidesign</groupId>
     5   <artifactId>visidor</artifactId>
     6   <packaging>jar</packaging>
     7   <version>1.0</version>
     8   <name>visidor</name>
     9   <url>http://maven.apache.org</url>
    10   <parent>
    11       <groupId>org.apidesign</groupId>
    12       <artifactId>all-quoridor</artifactId>
    13       <relativePath>..</relativePath>
    14       <version>1.0</version>
    15   </parent>
    16   <build>
    17     <plugins>
    18       <plugin>
    19         <groupId>org.apache.maven.plugins</groupId>
    20         <artifactId>maven-compiler-plugin</artifactId>
    21         <version>2.0.2</version>
    22         <configuration>
    23           <source>1.5</source>
    24           <target>1.5</target>
    25         </configuration>
    26       </plugin>
    27     </plugins>
    28   </build>
    29   <dependencies>
    30     <dependency>
    31       <groupId>junit</groupId>
    32       <artifactId>junit</artifactId>
    33       <version>3.8.1</version>
    34       <scope>test</scope>
    35     </dependency>
    36     <dependency>
    37       <groupId>org.apidesign</groupId>
    38       <artifactId>quoridor</artifactId>
    39       <version>1.0</version>
    40     </dependency>
    41     <dependency>
    42       <groupId>org.netbeans.api</groupId>
    43       <artifactId>org-netbeans-api-visual</artifactId>
    44       <version>RELEASE65</version>
    45     </dependency>
    46   </dependencies>
    47 </project>
    48 
    49 
    50 
    51