ko4j/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Tue, 19 Aug 2014 20:11:47 +0200
changeset 813 394568d7b13b
parent 811 12ba7b79238a
child 819 f50f9fa93819
permissions -rw-r--r--
[maven-release-plugin] prepare for next development iteration
     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>1.0-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.netbeans.html</groupId>
    10   <artifactId>ko4j</artifactId>
    11   <version>1.0-SNAPSHOT</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.netbeans.html</groupId>
    27               <artifactId>html4j-maven-plugin</artifactId>
    28           </plugin>
    29           <plugin>
    30               <groupId>org.apache.maven.plugins</groupId>
    31               <artifactId>maven-javadoc-plugin</artifactId>
    32               <configuration>
    33                   <skip>false</skip>
    34               </configuration>
    35           </plugin>
    36       </plugins>
    37   </build>
    38   <dependencies>
    39     <dependency>
    40       <groupId>org.netbeans.html</groupId>
    41       <artifactId>net.java.html.json</artifactId>
    42       <version>${project.version}</version>
    43     </dependency>
    44     <dependency>
    45       <groupId>org.testng</groupId>
    46       <artifactId>testng</artifactId>
    47       <scope>test</scope>
    48     </dependency>
    49     <dependency>
    50       <groupId>${project.groupId}</groupId>
    51       <artifactId>net.java.html.json.tck</artifactId>
    52       <version>${project.version}</version>
    53       <scope>test</scope>
    54     </dependency>
    55     <dependency>
    56       <groupId>org.netbeans.api</groupId>
    57       <artifactId>org-openide-util-lookup</artifactId>
    58       <scope>provided</scope>
    59     </dependency>
    60     <dependency>
    61       <groupId>org.netbeans.html</groupId>
    62       <artifactId>net.java.html.boot</artifactId>
    63       <version>${project.version}</version>
    64       <type>jar</type>
    65     </dependency>
    66     <dependency>
    67       <groupId>${project.groupId}</groupId>
    68       <artifactId>net.java.html.boot.fx</artifactId>
    69       <version>${project.version}</version>
    70       <scope>test</scope>
    71     </dependency>
    72     <dependency>
    73       <groupId>org.glassfish.grizzly</groupId>
    74       <artifactId>grizzly-http-server</artifactId>
    75       <version>${grizzly.version}</version>
    76       <scope>test</scope>
    77     </dependency>
    78     <dependency>
    79       <groupId>org.glassfish.grizzly</groupId>
    80       <artifactId>grizzly-websockets-server</artifactId>
    81       <version>${grizzly.version}</version>
    82       <scope>test</scope>
    83       <type>jar</type>
    84     </dependency>
    85     <dependency>
    86         <groupId>org.glassfish.grizzly</groupId>
    87         <artifactId>grizzly-http-servlet</artifactId>
    88         <version>${grizzly.version}</version>
    89         <scope>test</scope>
    90     </dependency>    
    91     <dependency>
    92         <groupId>javax.servlet</groupId>
    93         <artifactId>javax.servlet-api</artifactId>
    94         <scope>test</scope>
    95         <version>3.1.0</version>
    96     </dependency>
    97   </dependencies>
    98     <description>Binds net.java.html.json APIs together with knockout.js</description>
    99 </project>