pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 20 Sep 2012 10:39:54 +0200
changeset 17 cb0cfba1b863
permissions -rw-r--r--
instanceOf support
     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/xsd/maven-4.0.0.xsd">
     3   <modelVersion>4.0.0</modelVersion>
     4 
     5   <groupId>org.apidesign</groupId>
     6   <artifactId>java4browser</artifactId>
     7   <version>0.1-SNAPSHOT</version>
     8   <packaging>jar</packaging>
     9 
    10   <name>java4browser</name>
    11   <url>http://java4browser.apidesign.org</url>
    12 
    13   <properties>
    14     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    15     <author.name>Jaroslav Tulach</author.name>
    16     <author.email>jaroslav.tulach@apidesign.org</author.email>
    17   </properties>
    18   
    19   <repositories>
    20       <repository>
    21           <id>netbeans</id>
    22           <name>NetBeans</name>
    23           <url>http://bits.netbeans.org/maven2/</url>
    24       </repository>
    25   </repositories>
    26   <pluginRepositories>
    27     <pluginRepository>
    28         <id>mc-release</id>
    29         <name>Local Maven repository of releases</name>
    30         <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
    31         <snapshots>
    32             <enabled>false</enabled>
    33         </snapshots>
    34         <releases>
    35             <enabled>true</enabled>
    36         </releases>
    37     </pluginRepository>
    38   </pluginRepositories>
    39   <scm>
    40       <connection>scm:hg:http://source.apidesign.org/hg/quoridor</connection>
    41       <url>http://source.apidesign.org/hg/quoridor</url>
    42   </scm>
    43   <licenses>
    44     <license>
    45         <name>GPL-2.0</name>
    46         <url>http://opensource.org/licenses/GPL-2.0</url>
    47         <distribution>repo</distribution>
    48     </license>
    49   </licenses>
    50   <organization>
    51       <name>API Design</name>
    52       <url>http://apidesign.org</url>
    53   </organization>
    54     <build>
    55         <plugins>
    56             <plugin>
    57                 <groupId>com.mycila.maven-license-plugin</groupId>
    58                 <artifactId>maven-license-plugin</artifactId>
    59                 <version>1.9.0</version>
    60                 <configuration>
    61                     <header>src/header.txt</header>
    62                 </configuration>
    63             </plugin>
    64         </plugins>
    65     </build>
    66   <dependencies>
    67     <dependency>
    68       <groupId>org.testng</groupId>
    69       <artifactId>testng</artifactId>
    70       <version>6.7</version>
    71       <scope>test</scope>
    72       <exclusions>
    73         <exclusion>
    74           <artifactId>junit</artifactId>
    75           <groupId>junit</groupId>
    76         </exclusion>
    77       </exclusions>
    78     </dependency>
    79     <dependency>
    80       <groupId>org.netbeans.api</groupId>
    81       <artifactId>org-netbeans-modules-classfile</artifactId>
    82       <version>RELEASE72</version>
    83       <type>jar</type>
    84     </dependency>
    85   </dependencies>
    86 </project>