quoridor/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 18 Feb 2010 08:33:00 +0100
changeset 231 a849ce530828
parent 186 47e21a031490
child 246 ed99ec32bd44
permissions -rw-r--r--
Replacing version numbers spread around the all pom.xml files with properties defined in the master pom
     1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     3   <modelVersion>4.0.0</modelVersion>
     4   <artifactId>quoridor</artifactId>
     5   <packaging>jar</packaging>
     6   <url>http://quoridor.xelfi.cz</url>
     7   <parent>
     8       <groupId>cz.xelfi.quoridor</groupId>
     9       <artifactId>all-quoridor</artifactId>
    10       <relativePath>..</relativePath>
    11       <version>1.0</version>
    12   </parent>
    13   <!--
    14       <version>2.0</version>
    15   <ciManagement>
    16       <system>hudson</system>
    17       <url>http://hudson.apidesign.org/hudson/job/lookup</url>
    18   </ciManagement>
    19   <issueManagement>
    20       <system>issuezilla</system>
    21       <url>http://platform.netbeans.org/issues/</url>
    22   </issueManagement>
    23   <mailingLists>
    24       <mailingList>
    25           <name>Using the NetBeans Platform</name>
    26           <archive>http://openide.netbeans.org/servlets/SummarizeList?listName=dev</archive>
    27           <post>dev@openide.netbeans.org</post>
    28       </mailingList>
    29   </mailingLists>
    30   -->
    31     <build>
    32         <plugins>
    33             <plugin>
    34                 <groupId>org.apache.maven.plugins</groupId>
    35                 <artifactId>maven-compiler-plugin</artifactId>
    36                 <version>2.0.2</version>
    37                 <configuration>
    38                     <source>1.5</source>
    39                     <target>1.5</target>
    40                 </configuration>
    41             </plugin>
    42             <plugin>
    43                 <groupId>org.apache.maven.plugins</groupId>
    44                 <artifactId>maven-javadoc-plugin</artifactId>
    45                 <version>2.5</version>
    46                 <!--
    47                 <configuration>
    48                     <excludePackageNames>org.netbeans.modules.openide.util</excludePackageNames>
    49                     <overview>${basedir}/src/main/java/org/openide/util/lookup/doc-files/index.html</overview>
    50                 </configuration>
    51                 -->
    52             </plugin>
    53         </plugins>
    54     </build>
    55     <dependencies>
    56         <dependency>
    57             <groupId>org.netbeans.api</groupId>
    58             <artifactId>org-netbeans-modules-nbjunit</artifactId>
    59             <version>RELEASE65</version>
    60             <scope>test</scope>
    61         </dependency>
    62         <dependency>
    63             <groupId>org.netbeans.modules</groupId>
    64             <artifactId>org-netbeans-insane</artifactId>
    65             <version>RELEASE65</version>
    66             <scope>test</scope>
    67         </dependency>
    68     </dependencies>
    69     <name>Quoridor Library</name>
    70     <description>Quoridor library provides non-visual API to play the Quoridor game.</description>
    71     <version>${quoridorVersion}</version>
    72 </project>
    73