visidor/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 18 Feb 2010 06:53:35 +0100
changeset 230 a80ccd2a4517
parent 186 47e21a031490
child 231 a849ce530828
permissions -rw-r--r--
Let's inherit groupId
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@25
     6
  <version>1.0</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@25
    38
      <version>1.0</version>
jtulach@25
    39
    </dependency>
jtulach@25
    40
    <dependency>
jtulach@25
    41
      <groupId>org.netbeans.api</groupId>
jtulach@25
    42
      <artifactId>org-netbeans-api-visual</artifactId>
jtulach@25
    43
      <version>RELEASE65</version>
jtulach@25
    44
    </dependency>
jtulach@25
    45
  </dependencies>
jtulach@25
    46
</project>
jtulach@25
    47
jtulach@25
    48
jtulach@25
    49
jtulach@25
    50