vm/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 24 Sep 2012 12:39:21 +0200
changeset 25 e214f04abb98
parent 22 b9318fe303cd
child 29 dcb98731b000
permissions -rw-r--r--
Can find all IDs in an XHTML page
     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   <parent>
     5     <groupId>org.apidesign</groupId>
     6     <artifactId>bck2brwsr</artifactId>
     7     <version>1.0-SNAPSHOT</version>
     8   </parent>
     9 
    10   <groupId>org.apidesign</groupId>
    11   <artifactId>vm4brwsr</artifactId>
    12   <version>0.1-SNAPSHOT</version>
    13   <packaging>jar</packaging>
    14 
    15   <name>Java VM for Browser</name>
    16   <url>http://bck2brwsr.apidesign.org</url>
    17 
    18   <properties>
    19     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    20     <author.name>Jaroslav Tulach</author.name>
    21     <author.email>jaroslav.tulach@apidesign.org</author.email>
    22   </properties>
    23   
    24   <repositories>
    25       <repository>
    26           <id>netbeans</id>
    27           <name>NetBeans</name>
    28           <url>http://bits.netbeans.org/maven2/</url>
    29       </repository>
    30   </repositories>
    31   <pluginRepositories>
    32     <pluginRepository>
    33         <id>mc-release</id>
    34         <name>Local Maven repository of releases</name>
    35         <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
    36         <snapshots>
    37             <enabled>false</enabled>
    38         </snapshots>
    39         <releases>
    40             <enabled>true</enabled>
    41         </releases>
    42     </pluginRepository>
    43   </pluginRepositories>
    44   <scm>
    45       <connection>scm:hg:http://source.apidesign.org/hg/bck2brwsr</connection>
    46       <url>http://source.apidesign.org/hg/bck2brwsr</url>
    47   </scm>
    48     <build>
    49         <plugins>
    50             <plugin>
    51                 <groupId>com.mycila.maven-license-plugin</groupId>
    52                 <artifactId>maven-license-plugin</artifactId>
    53                 <version>1.9.0</version>
    54                 <configuration>
    55                     <header>src/header.txt</header>
    56                 </configuration>
    57             </plugin>
    58         </plugins>
    59     </build>
    60   <dependencies>
    61     <dependency>
    62       <groupId>org.testng</groupId>
    63       <artifactId>testng</artifactId>
    64       <scope>test</scope>
    65       <exclusions>
    66         <exclusion>
    67           <artifactId>junit</artifactId>
    68           <groupId>junit</groupId>
    69         </exclusion>
    70       </exclusions>
    71     </dependency>
    72     <dependency>
    73       <groupId>org.netbeans.api</groupId>
    74       <artifactId>org-netbeans-modules-classfile</artifactId>
    75       <type>jar</type>
    76     </dependency>
    77   </dependencies>
    78 </project>