pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 28 Sep 2010 22:07:05 +0200
branchdesktop
changeset 270 45b57eaafbb7
parent 259 925ad0659349
parent 266 15fcdfc4cd4a
permissions -rw-r--r--
nbm-maven-plugin 3.3 has been released. Let's use it.
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@258
    49
      <jerseyVersion>1.3</jerseyVersion>
jaroslav@253
    50
      <quoridorVersion>1.4</quoridorVersion>
jtulach@238
    51
      <webidorVersion>1.17</webidorVersion>
jtulach@231
    52
      <visidorVersion>1.0-SNAPSHOT</visidorVersion>
jaroslav@234
    53
      <freemarkerVersion>1.60</freemarkerVersion>
jtulach@240
    54
      <emailerVersion>1.1</emailerVersion>
jtulach@231
    55
      <statisticsVersion>1.8</statisticsVersion>
jaroslav@256
    56
      <wsdorVersion>1.0</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>
jaroslav@257
    66
    <module>desktop</module>
jtulach@25
    67
  </modules>
jtulach@25
    68
    <name>Quoridor related projects</name>
jtulach@25
    69
    <description>Master project that agregates all quoridor related functionality.
jtulach@25
    70
    </description>
jaroslav@266
    71
    <build>
jaroslav@266
    72
        <plugins>
jaroslav@266
    73
            <plugin>
jaroslav@266
    74
                <groupId>com.mycila.maven-license-plugin</groupId>
jaroslav@266
    75
                <artifactId>maven-license-plugin</artifactId>
jaroslav@266
    76
                <configuration>
jaroslav@266
    77
                    <header>src/header.txt</header>
jaroslav@266
    78
                </configuration>
jaroslav@266
    79
            </plugin>
jaroslav@266
    80
        </plugins>
jaroslav@266
    81
    </build>
jaroslav@256
    82
</project>