htmlpage/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 24 Sep 2012 12:39:21 +0200
changeset 25 e214f04abb98
child 26 03e4aaa4ef3d
permissions -rw-r--r--
Can find all IDs in an XHTML page
     1 <?xml version="1.0"?>
     2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
     3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     4   <modelVersion>4.0.0</modelVersion>
     5   <parent>
     6     <groupId>org.apidesign</groupId>
     7     <artifactId>bck2brwsr</artifactId>
     8     <version>1.0-SNAPSHOT</version>
     9   </parent>
    10   <groupId>org.apidesign</groupId>
    11   <artifactId>htmlpage</artifactId>
    12   <version>1.0-SNAPSHOT</version>
    13   <name>htmlpage</name>
    14   <url>http://maven.apache.org</url>
    15   <properties>
    16     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    17   </properties>
    18   <dependencies>
    19     <dependency>
    20       <groupId>org.testng</groupId>
    21       <artifactId>testng</artifactId>
    22       <scope>test</scope>
    23       <exclusions>
    24         <exclusion>
    25           <artifactId>junit</artifactId>
    26           <groupId>junit</groupId>
    27         </exclusion>
    28       </exclusions>
    29     </dependency>
    30   </dependencies>
    31 </project>