ko4j/pom.xml
author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
Mon, 20 Jan 2014 14:09:43 +0100
branchjdk6
changeset 470 63218f926a49
parent 464 da6c0d295eed
child 471 14e1ef348d1a
permissions -rw-r--r--
In order to use the html4j technology in Jersey 2.6 we need to run on JDK6, as Jersey still requires JDK6
     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" 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.netbeans.html</groupId>
     6     <artifactId>pom</artifactId>
     7     <version>0.7</version>
     8   </parent>
     9   <groupId>org.netbeans.html</groupId>
    10   <artifactId>ko4j</artifactId>
    11   <version>0.7</version>
    12   <packaging>bundle</packaging>
    13   <name>Knockout.js for Java</name>
    14   <url>http://maven.apache.org</url>
    15   <properties>
    16     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    17     <bundleSymbolicName>org.netbeans.html.ko4j</bundleSymbolicName>
    18   </properties>
    19   <build>
    20       <plugins>
    21           <plugin>
    22               <groupId>org.apache.felix</groupId>
    23               <artifactId>maven-bundle-plugin</artifactId>
    24           </plugin>
    25           <plugin>
    26               <groupId>org.apache.maven.plugins</groupId>
    27               <artifactId>maven-javadoc-plugin</artifactId>
    28               <configuration>
    29                   <skip>false</skip>
    30               </configuration>
    31           </plugin>
    32          <plugin>
    33             <groupId>org.apache.maven.plugins</groupId>
    34             <artifactId>maven-compiler-plugin</artifactId>
    35             <version>2.3.2</version>
    36             <configuration>
    37                <source>1.6</source>
    38                <target>1.6</target>
    39             </configuration>
    40          </plugin>
    41       </plugins>
    42   </build>
    43   <dependencies>
    44     <dependency>
    45       <groupId>org.netbeans.html</groupId>
    46       <artifactId>net.java.html.json</artifactId>
    47       <version>${project.version}</version>
    48     </dependency>
    49     <dependency>
    50       <groupId>org.testng</groupId>
    51       <artifactId>testng</artifactId>
    52       <scope>test</scope>
    53     </dependency>
    54     <dependency>
    55       <groupId>${project.groupId}</groupId>
    56       <artifactId>net.java.html.json.tck</artifactId>
    57       <version>${project.version}</version>
    58       <scope>test</scope>
    59     </dependency>
    60     <dependency>
    61       <groupId>org.netbeans.api</groupId>
    62       <artifactId>org-openide-util-lookup</artifactId>
    63       <scope>provided</scope>
    64     </dependency>
    65     <dependency>
    66       <groupId>org.netbeans.html</groupId>
    67       <artifactId>net.java.html.boot</artifactId>
    68       <version>${project.version}</version>
    69       <type>jar</type>
    70     </dependency>
    71     <dependency>
    72       <groupId>${project.groupId}</groupId>
    73       <artifactId>net.java.html.boot.fx</artifactId>
    74       <version>${project.version}</version>
    75       <scope>test</scope>
    76     </dependency>
    77     <dependency>
    78       <groupId>org.glassfish.grizzly</groupId>
    79       <artifactId>grizzly-http-server</artifactId>
    80       <version>${grizzly.version}</version>
    81       <scope>test</scope>
    82     </dependency>
    83     <dependency>
    84       <groupId>org.glassfish.grizzly</groupId>
    85       <artifactId>grizzly-websockets-server</artifactId>
    86       <version>${grizzly.version}</version>
    87       <scope>test</scope>
    88       <type>jar</type>
    89     </dependency>
    90     <dependency>
    91         <groupId>org.glassfish.grizzly</groupId>
    92         <artifactId>grizzly-http-servlet</artifactId>
    93         <version>${grizzly.version}</version>
    94         <scope>test</scope>
    95     </dependency>    
    96     <dependency>
    97         <groupId>javax.servlet</groupId>
    98         <artifactId>javax.servlet-api</artifactId>
    99         <scope>test</scope>
   100         <version>3.1.0</version>
   101     </dependency>
   102   </dependencies>
   103     <description>Binds net.java.html.json APIs together with knockout.js</description>
   104 </project>