vm/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 24 Sep 2012 11:07:38 +0200
changeset 22 b9318fe303cd
parent 0 pom.xml@71aab30ab2b7
child 25 e214f04abb98
permissions -rw-r--r--
Getting ready for multiple projects inside one Hg repository
     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>vm4brwsr</artifactId>
     7   <version>0.1-SNAPSHOT</version>
     8   <packaging>jar</packaging>
     9 
    10   <name>Java VM for Browser</name>
    11   <url>http://bck2brwsr.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/bck2brwsr</connection>
    41       <url>http://source.apidesign.org/hg/bck2brwsr</url>
    42   </scm>
    43     <build>
    44         <plugins>
    45             <plugin>
    46                 <groupId>com.mycila.maven-license-plugin</groupId>
    47                 <artifactId>maven-license-plugin</artifactId>
    48                 <version>1.9.0</version>
    49                 <configuration>
    50                     <header>src/header.txt</header>
    51                 </configuration>
    52             </plugin>
    53         </plugins>
    54     </build>
    55   <dependencies>
    56     <dependency>
    57       <groupId>org.testng</groupId>
    58       <artifactId>testng</artifactId>
    59       <version>6.7</version>
    60       <scope>test</scope>
    61       <exclusions>
    62         <exclusion>
    63           <artifactId>junit</artifactId>
    64           <groupId>junit</groupId>
    65         </exclusion>
    66       </exclusions>
    67     </dependency>
    68     <dependency>
    69       <groupId>org.netbeans.api</groupId>
    70       <artifactId>org-netbeans-modules-classfile</artifactId>
    71       <version>RELEASE72</version>
    72       <type>jar</type>
    73     </dependency>
    74   </dependencies>
    75 </project>