javaquery/demo-calculator-dynamic/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 07 Feb 2013 12:58:12 +0100
branchemul
changeset 694 0d277415ed02
parent 514 f761555d8312
child 726 013f06feb50f
child 741 1343f52164f3
permissions -rw-r--r--
Rebasing the Inflater support on jzlib which, unlike GNU ClassPath, has correct implementation of Huffman code. Making the implementation more easily testable by turning Inflater and ZipInputStream into pure delegates. Current implementation is going to need proper long support.
     1 <?xml version="1.0"?>
     2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     4   <modelVersion>4.0.0</modelVersion>
     5 
     6   <groupId>org.apidesign.bck2brwsr</groupId>
     7   <artifactId>demo.calculator</artifactId>
     8   <version>0.3-SNAPSHOT</version>
     9   <packaging>jar</packaging>
    10 
    11   <name>JavaQuery Demo - Calculator</name>
    12   <url>http://maven.apache.org</url>
    13 
    14   <properties>
    15     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    16   </properties>
    17   <build>
    18       <plugins>
    19             <plugin>
    20                 <groupId>org.apidesign.bck2brwsr</groupId>
    21                 <artifactId>mojo</artifactId>
    22                 <version>0.3-SNAPSHOT</version>
    23                 <executions>
    24                     <execution>
    25                         <goals>
    26                             <goal>brwsr</goal>
    27                         </goals>
    28                     </execution>
    29                 </executions>
    30                 <configuration>
    31                     <startpage>org/apidesign/bck2brwsr/demo/calc/Calculator.xhtml</startpage>
    32                 </configuration>
    33             </plugin>
    34          <plugin>
    35             <groupId>org.apache.maven.plugins</groupId>
    36             <artifactId>maven-compiler-plugin</artifactId>
    37             <version>2.3.2</version>
    38             <configuration>
    39                <source>1.7</source>
    40                <target>1.7</target>
    41             </configuration>
    42          </plugin>
    43       </plugins>
    44   </build>
    45 
    46   <dependencies>
    47     <dependency>
    48       <groupId>org.apidesign.bck2brwsr</groupId>
    49       <artifactId>emul.mini</artifactId>
    50       <version>0.3-SNAPSHOT</version>
    51     </dependency>
    52     <dependency>
    53       <groupId>org.apidesign.bck2brwsr</groupId>
    54       <artifactId>javaquery.api</artifactId>
    55       <version>0.3-SNAPSHOT</version>
    56     </dependency>
    57     <dependency>
    58       <groupId>org.testng</groupId>
    59       <artifactId>testng</artifactId>
    60       <version>6.5.2</version>
    61       <scope>test</scope>
    62     </dependency>
    63   </dependencies>
    64 </project>