webidor/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Wed, 29 Jul 2009 17:24:20 +0200
changeset 38 373f537e0153
parent 35 2e85dd878f04
child 64 e5a3b7ab719d
permissions -rw-r--r--
It is possible to play the game from command line with curl
jtulach@27
     1
<?xml version="1.0" encoding="UTF-8"?>
jtulach@27
     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">
jtulach@27
     3
  <modelVersion>4.0.0</modelVersion>
jtulach@27
     4
  <parent>
jtulach@27
     5
        <artifactId>all-quoridor</artifactId>
jtulach@27
     6
        <groupId>org.apidesign</groupId>
jtulach@27
     7
        <version>1.0</version>
jtulach@27
     8
    </parent>
jtulach@27
     9
  <groupId>org.apidesign</groupId>
jtulach@27
    10
  <artifactId>webidor</artifactId>
jtulach@35
    11
  <packaging>jar</packaging>
jtulach@27
    12
  <version>1.0</version>
jtulach@35
    13
  <name>webidor server</name>
jtulach@27
    14
  <url>http://maven.apache.org</url>
jtulach@35
    15
  <repositories>
jtulach@35
    16
    <repository>
jtulach@35
    17
        <id>maven2-repository.dev.java.net</id>
jtulach@35
    18
        <name>Java.net Repository for Maven</name>
jtulach@35
    19
        <url>http://download.java.net/maven/2/</url>
jtulach@35
    20
        <layout>default</layout>
jtulach@35
    21
    </repository>
jtulach@35
    22
    <repository>
jtulach@35
    23
        <id>maven-repository.dev.java.net</id>
jtulach@35
    24
        <name>Java.net Maven 1 Repository (legacy)</name>
jtulach@35
    25
        <url>http://download.java.net/maven/1</url>
jtulach@35
    26
        <layout>legacy</layout>
jtulach@35
    27
    </repository>
jtulach@35
    28
  </repositories>
jtulach@27
    29
  <dependencies>
jtulach@27
    30
jtulach@27
    31
    <dependency>
jtulach@27
    32
      <groupId>junit</groupId>
jtulach@27
    33
      <artifactId>junit</artifactId>
jtulach@35
    34
      <version>4.5</version>
jtulach@27
    35
      <scope>test</scope>
jtulach@27
    36
    </dependency>
jtulach@27
    37
    <dependency>
jtulach@35
    38
      <groupId>com.sun.jersey</groupId>
jtulach@35
    39
      <artifactId>jersey-core</artifactId>
jtulach@35
    40
      <version>1.1.0-ea</version>
jtulach@27
    41
    </dependency>
jtulach@27
    42
    <dependency>
jtulach@35
    43
      <groupId>com.sun.jersey</groupId>
jtulach@35
    44
      <artifactId>jersey-server</artifactId>
jtulach@35
    45
      <version>1.1.0-ea</version>
jtulach@27
    46
    </dependency>
jtulach@27
    47
    <dependency>
jtulach@35
    48
      <groupId>com.sun.jersey</groupId>
jtulach@35
    49
      <artifactId>jersey-json</artifactId>
jtulach@35
    50
      <version>1.1.0-ea</version>
jtulach@35
    51
      <type>jar</type>
jtulach@35
    52
    </dependency>
jtulach@35
    53
    <dependency>
jtulach@35
    54
      <groupId>com.sun.jersey.test.framework</groupId>
jtulach@35
    55
      <artifactId>jersey-test-framework</artifactId>
jtulach@35
    56
      <version>1.1.0-ea</version>
jtulach@35
    57
      <scope>test</scope>
jtulach@35
    58
    </dependency>
jtulach@35
    59
    <dependency>
jtulach@35
    60
      <groupId>org.apidesign</groupId>
jtulach@35
    61
      <artifactId>quoridor</artifactId>
jtulach@35
    62
      <version>1.0</version>
jtulach@35
    63
      <type>jar</type>
jtulach@27
    64
    </dependency>
jtulach@27
    65
  </dependencies>
jtulach@27
    66
  <build>
jtulach@27
    67
    <plugins>
jtulach@27
    68
      <plugin>
jtulach@27
    69
        <groupId>org.apache.maven.plugins</groupId>
jtulach@27
    70
        <artifactId>maven-compiler-plugin</artifactId>
jtulach@27
    71
        <version>2.0.2</version>
jtulach@27
    72
        <configuration>
jtulach@27
    73
          <source>1.5</source>
jtulach@27
    74
          <target>1.5</target>
jtulach@27
    75
        </configuration>
jtulach@27
    76
      </plugin>
jtulach@35
    77
      <plugin>
jtulach@35
    78
        <groupId>org.codehaus.mojo</groupId>
jtulach@35
    79
        <artifactId>exec-maven-plugin</artifactId>
jtulach@35
    80
        <configuration>
jtulach@38
    81
            <mainClass>cz.xelfi.quoridor.webidor.Quoridor</mainClass>
jtulach@35
    82
        </configuration>
jtulach@35
    83
      </plugin>
jtulach@27
    84
    </plugins>
jtulach@27
    85
    <finalName>webidor</finalName>
jtulach@27
    86
  </build>
jtulach@27
    87
</project>