visidor/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 04 Sep 2010 21:58:56 +0200
changeset 248 9bbf25021886
parent 231 a849ce530828
child 255 9ecd02d694cd
permissions -rw-r--r--
Using Java2D to display the board
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
  <artifactId>visidor</artifactId>
jtulach@25
     5
  <packaging>jar</packaging>
jtulach@231
     6
  <version>${visidorVersion}</version>
jtulach@25
     7
  <name>visidor</name>
jtulach@25
     8
  <url>http://maven.apache.org</url>
jtulach@25
     9
  <parent>
jaroslav@186
    10
      <groupId>cz.xelfi.quoridor</groupId>
jtulach@25
    11
      <artifactId>all-quoridor</artifactId>
jtulach@25
    12
      <relativePath>..</relativePath>
jtulach@25
    13
      <version>1.0</version>
jtulach@25
    14
  </parent>
jtulach@25
    15
  <build>
jtulach@25
    16
    <plugins>
jtulach@25
    17
      <plugin>
jtulach@25
    18
        <groupId>org.apache.maven.plugins</groupId>
jtulach@25
    19
        <artifactId>maven-compiler-plugin</artifactId>
jtulach@25
    20
        <version>2.0.2</version>
jtulach@25
    21
        <configuration>
jtulach@25
    22
          <source>1.5</source>
jtulach@25
    23
          <target>1.5</target>
jtulach@25
    24
        </configuration>
jtulach@25
    25
      </plugin>
jtulach@25
    26
    </plugins>
jtulach@25
    27
  </build>
jtulach@25
    28
  <dependencies>
jtulach@25
    29
    <dependency>
jtulach@25
    30
      <groupId>junit</groupId>
jtulach@25
    31
      <artifactId>junit</artifactId>
jtulach@25
    32
      <version>3.8.1</version>
jtulach@25
    33
      <scope>test</scope>
jtulach@25
    34
    </dependency>
jtulach@25
    35
    <dependency>
jaroslav@186
    36
      <groupId>cz.xelfi.quoridor</groupId>
jtulach@25
    37
      <artifactId>quoridor</artifactId>
jtulach@231
    38
      <version>${quoridorVersion}</version>
jtulach@25
    39
    </dependency>
jtulach@25
    40
  </dependencies>
jtulach@25
    41
</project>
jtulach@25
    42
jtulach@25
    43
jtulach@25
    44
jtulach@25
    45