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
jtulach@25
     1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
jtulach@25
     2
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
jtulach@25
     3
  <modelVersion>4.0.0</modelVersion>
jtulach@25
     4
  <groupId>org.apidesign</groupId>
jtulach@25
     5
  <artifactId>visidor</artifactId>
jtulach@25
     6
  <packaging>jar</packaging>
jtulach@25
     7
  <version>1.0</version>
jtulach@25
     8
  <name>visidor</name>
jtulach@25
     9
  <url>http://maven.apache.org</url>
jtulach@25
    10
  <parent>
jtulach@25
    11
      <groupId>org.apidesign</groupId>
jtulach@25
    12
      <artifactId>all-quoridor</artifactId>
jtulach@25
    13
      <relativePath>..</relativePath>
jtulach@25
    14
      <version>1.0</version>
jtulach@25
    15
  </parent>
jtulach@25
    16
  <build>
jtulach@25
    17
    <plugins>
jtulach@25
    18
      <plugin>
jtulach@25
    19
        <groupId>org.apache.maven.plugins</groupId>
jtulach@25
    20
        <artifactId>maven-compiler-plugin</artifactId>
jtulach@25
    21
        <version>2.0.2</version>
jtulach@25
    22
        <configuration>
jtulach@25
    23
          <source>1.5</source>
jtulach@25
    24
          <target>1.5</target>
jtulach@25
    25
        </configuration>
jtulach@25
    26
      </plugin>
jtulach@25
    27
    </plugins>
jtulach@25
    28
  </build>
jtulach@25
    29
  <dependencies>
jtulach@25
    30
    <dependency>
jtulach@25
    31
      <groupId>junit</groupId>
jtulach@25
    32
      <artifactId>junit</artifactId>
jtulach@25
    33
      <version>3.8.1</version>
jtulach@25
    34
      <scope>test</scope>
jtulach@25
    35
    </dependency>
jtulach@25
    36
    <dependency>
jtulach@25
    37
      <groupId>org.apidesign</groupId>
jtulach@25
    38
      <artifactId>quoridor</artifactId>
jtulach@25
    39
      <version>1.0</version>
jtulach@25
    40
    </dependency>
jtulach@25
    41
    <dependency>
jtulach@25
    42
      <groupId>org.netbeans.api</groupId>
jtulach@25
    43
      <artifactId>org-netbeans-api-visual</artifactId>
jtulach@25
    44
      <version>RELEASE65</version>
jtulach@25
    45
    </dependency>
jtulach@25
    46
  </dependencies>
jtulach@25
    47
</project>
jtulach@25
    48
jtulach@25
    49
jtulach@25
    50
jtulach@25
    51