htmlpage/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 11 Oct 2012 06:15:22 -0700
branchemul
changeset 100 029e6eed60e9
parent 26 03e4aaa4ef3d
child 106 346633cd13d6
permissions -rw-r--r--
Now we are able to change a title of a page inside of a browser
     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     <dependency>
    31       <groupId>org.netbeans.api</groupId>
    32       <artifactId>org-openide-util-lookup</artifactId>
    33     </dependency>
    34     <dependency>
    35       <groupId>org.apidesign.bck2brwsr</groupId>
    36       <artifactId>core</artifactId>
    37       <version>1.0-SNAPSHOT</version>
    38       <type>jar</type>
    39     </dependency>
    40     <dependency>
    41       <groupId>org.apidesign.bck2brwsr</groupId>
    42       <artifactId>emul</artifactId>
    43       <version>1.0-SNAPSHOT</version>
    44       <type>jar</type>
    45     </dependency>
    46     <dependency>
    47       <groupId>org.apidesign.bck2brwsr</groupId>
    48       <artifactId>vm4brwsr</artifactId>
    49       <version>0.1-SNAPSHOT</version>
    50       <type>jar</type>
    51       <scope>test</scope>
    52     </dependency>
    53   </dependencies>
    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>../vm/src/header.txt</header>
    62                 </configuration>
    63             </plugin>
    64         </plugins>
    65     </build>
    66 </project>