quoridor/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 15 Apr 2011 21:05:46 +0200
changeset 281 fdf4436aad29
parent 246 ed99ec32bd44
permissions -rw-r--r--
Most recent stable version of jersey is 1.6
jtulach@0
     1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
jtulach@0
     2
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
jtulach@0
     3
  <modelVersion>4.0.0</modelVersion>
jtulach@0
     4
  <artifactId>quoridor</artifactId>
jaroslav@246
     5
  <packaging>bundle</packaging>
jtulach@0
     6
  <url>http://quoridor.xelfi.cz</url>
jtulach@25
     7
  <parent>
jaroslav@186
     8
      <groupId>cz.xelfi.quoridor</groupId>
jtulach@25
     9
      <artifactId>all-quoridor</artifactId>
jtulach@25
    10
      <relativePath>..</relativePath>
jtulach@25
    11
      <version>1.0</version>
jtulach@25
    12
  </parent>
jtulach@0
    13
  <!--
jtulach@0
    14
      <version>2.0</version>
jtulach@0
    15
  <ciManagement>
jtulach@0
    16
      <system>hudson</system>
jtulach@0
    17
      <url>http://hudson.apidesign.org/hudson/job/lookup</url>
jtulach@0
    18
  </ciManagement>
jtulach@0
    19
  <issueManagement>
jtulach@0
    20
      <system>issuezilla</system>
jtulach@0
    21
      <url>http://platform.netbeans.org/issues/</url>
jtulach@0
    22
  </issueManagement>
jtulach@0
    23
  <mailingLists>
jtulach@0
    24
      <mailingList>
jtulach@0
    25
          <name>Using the NetBeans Platform</name>
jtulach@0
    26
          <archive>http://openide.netbeans.org/servlets/SummarizeList?listName=dev</archive>
jtulach@0
    27
          <post>dev@openide.netbeans.org</post>
jtulach@0
    28
      </mailingList>
jtulach@0
    29
  </mailingLists>
jtulach@0
    30
  -->
jtulach@0
    31
    <build>
jtulach@0
    32
        <plugins>
jtulach@0
    33
            <plugin>
jaroslav@246
    34
                <groupId>org.apache.felix</groupId>
jaroslav@246
    35
                <artifactId>maven-bundle-plugin</artifactId>
jaroslav@246
    36
                <version>2.0.1</version>
jaroslav@246
    37
                <extensions>true</extensions>
jaroslav@253
    38
                <configuration>
jaroslav@253
    39
                    <instructions>
jaroslav@253
    40
                        <Export-Package>cz.xelfi.quoridor</Export-Package>
jaroslav@253
    41
                        <Private-Package>cz.xelfi.quoridor.*</Private-Package>
jaroslav@253
    42
                    </instructions>
jaroslav@253
    43
                </configuration>
jaroslav@246
    44
            </plugin>
jaroslav@246
    45
            <plugin>
jtulach@0
    46
                <groupId>org.apache.maven.plugins</groupId>
jtulach@0
    47
                <artifactId>maven-compiler-plugin</artifactId>
jtulach@0
    48
                <version>2.0.2</version>
jtulach@0
    49
                <configuration>
jtulach@0
    50
                    <source>1.5</source>
jtulach@0
    51
                    <target>1.5</target>
jtulach@0
    52
                </configuration>
jtulach@0
    53
            </plugin>
jtulach@0
    54
            <plugin>
jtulach@0
    55
                <groupId>org.apache.maven.plugins</groupId>
jtulach@0
    56
                <artifactId>maven-javadoc-plugin</artifactId>
jtulach@0
    57
                <version>2.5</version>
jtulach@0
    58
                <!--
jtulach@0
    59
                <configuration>
jtulach@0
    60
                    <excludePackageNames>org.netbeans.modules.openide.util</excludePackageNames>
jtulach@0
    61
                    <overview>${basedir}/src/main/java/org/openide/util/lookup/doc-files/index.html</overview>
jtulach@0
    62
                </configuration>
jtulach@0
    63
                -->
jtulach@0
    64
            </plugin>
jtulach@0
    65
        </plugins>
jtulach@0
    66
    </build>
jtulach@0
    67
    <dependencies>
jtulach@0
    68
        <dependency>
jtulach@0
    69
            <groupId>org.netbeans.api</groupId>
jtulach@0
    70
            <artifactId>org-netbeans-modules-nbjunit</artifactId>
jtulach@0
    71
            <version>RELEASE65</version>
jtulach@0
    72
            <scope>test</scope>
jtulach@0
    73
        </dependency>
jtulach@0
    74
        <dependency>
jtulach@0
    75
            <groupId>org.netbeans.modules</groupId>
jtulach@0
    76
            <artifactId>org-netbeans-insane</artifactId>
jtulach@0
    77
            <version>RELEASE65</version>
jtulach@0
    78
            <scope>test</scope>
jtulach@0
    79
        </dependency>
jtulach@0
    80
    </dependencies>
jtulach@0
    81
    <name>Quoridor Library</name>
jtulach@25
    82
    <description>Quoridor library provides non-visual API to play the Quoridor game.</description>
jtulach@231
    83
    <version>${quoridorVersion}</version>
jtulach@0
    84
</project>
jtulach@20
    85