pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 15 Apr 2011 21:05:46 +0200
changeset 281 fdf4436aad29
parent 277 02542f49f327
child 283 0ea04469967d
permissions -rw-r--r--
Most recent stable version of jersey is 1.6
jtulach@25
     1
<?xml version="1.0" encoding="UTF-8"?>
jtulach@25
     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/xsd/maven-4.0.0.xsd">
jtulach@25
     3
  <modelVersion>4.0.0</modelVersion>
jtulach@25
     4
  <packaging>pom</packaging>
jaroslav@186
     5
  <groupId>cz.xelfi.quoridor</groupId>
jtulach@25
     6
  <artifactId>all-quoridor</artifactId>
jtulach@25
     7
  <version>1.0</version>
jtulach@25
     8
  <repositories>
jtulach@25
     9
      <repository>
jtulach@25
    10
          <id>netbeans</id>
jtulach@25
    11
          <url>http://bits.netbeans.org/maven2/</url>
jtulach@25
    12
      </repository>
jaroslav@258
    13
    <repository>
jaroslav@258
    14
        <id>maven2-repository.dev.java.net</id>
jaroslav@258
    15
        <name>Java.net Repository for Maven</name>
jaroslav@258
    16
        <url>http://download.java.net/maven/2/</url>
jaroslav@258
    17
        <layout>default</layout>
jaroslav@258
    18
    </repository>
jtulach@25
    19
  </repositories>
jaroslav@266
    20
  <pluginRepositories>
jaroslav@266
    21
    <pluginRepository>
jaroslav@266
    22
        <id>mc-release</id>
jaroslav@266
    23
        <name>Local Maven repository of releases</name>
jaroslav@266
    24
        <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
jaroslav@266
    25
        <snapshots>
jaroslav@266
    26
            <enabled>false</enabled>
jaroslav@266
    27
        </snapshots>
jaroslav@266
    28
        <releases>
jaroslav@266
    29
            <enabled>true</enabled>
jaroslav@266
    30
        </releases>
jaroslav@266
    31
    </pluginRepository>
jaroslav@266
    32
  </pluginRepositories>
jtulach@25
    33
  <scm>
jaroslav@266
    34
      <connection>scm:hg:http://source.apidesign.org/hg/quoridor</connection>
jaroslav@266
    35
      <url>http://source.apidesign.org/hg/quoridor</url>
jtulach@25
    36
  </scm>
jtulach@25
    37
  <licenses>
jtulach@25
    38
    <license>
jaroslav@247
    39
        <name>gpl-3.0</name>
jaroslav@247
    40
        <url>http://www.opensource.org/licenses/gpl-3.0.html</url>
jtulach@25
    41
        <distribution>repo</distribution>
jtulach@25
    42
    </license>
jtulach@25
    43
  </licenses>
jtulach@25
    44
  <organization>
jtulach@25
    45
      <name>API Design</name>
jtulach@25
    46
      <url>http://apidesign.org</url>
jtulach@25
    47
  </organization>
jtulach@231
    48
  <properties>
jaroslav@281
    49
      <jerseyVersion>1.6</jerseyVersion>
jaroslav@253
    50
      <quoridorVersion>1.4</quoridorVersion>
jaroslav@277
    51
      <webidorVersion>1.19</webidorVersion>
jtulach@231
    52
      <visidorVersion>1.0-SNAPSHOT</visidorVersion>
jtulach@271
    53
      <freemarkerVersion>1.61</freemarkerVersion>
jtulach@240
    54
      <emailerVersion>1.1</emailerVersion>
jtulach@231
    55
      <statisticsVersion>1.8</statisticsVersion>
jaroslav@277
    56
      <wsdorVersion>1.2</wsdorVersion>
jtulach@231
    57
  </properties>
jtulach@25
    58
  <modules>
jtulach@25
    59
    <module>quoridor</module>
jtulach@25
    60
    <module>visidor</module>
jtulach@35
    61
    <module>webidor</module>
jaroslav@178
    62
    <module>statistics</module>
jtulach@41
    63
    <module>freemarkerdor</module>
jtulach@153
    64
    <module>emailer</module>
jaroslav@256
    65
    <module>wsdor</module>
jtulach@25
    66
  </modules>
jtulach@25
    67
    <name>Quoridor related projects</name>
jtulach@25
    68
    <description>Master project that agregates all quoridor related functionality.
jtulach@25
    69
    </description>
jaroslav@266
    70
    <build>
jaroslav@266
    71
        <plugins>
jaroslav@266
    72
            <plugin>
jaroslav@266
    73
                <groupId>com.mycila.maven-license-plugin</groupId>
jaroslav@266
    74
                <artifactId>maven-license-plugin</artifactId>
jaroslav@266
    75
                <configuration>
jaroslav@266
    76
                    <header>src/header.txt</header>
jaroslav@266
    77
                </configuration>
jaroslav@266
    78
            </plugin>
jaroslav@266
    79
        </plugins>
jaroslav@266
    80
    </build>
jaroslav@277
    81
</project>