ko4j/pom.xml
branchUniversalKO
changeset 442 bd85dbbdc60c
parent 361 700087d2a5d3
child 446 6dce58c06f58
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ko4j/pom.xml	Thu Jan 09 15:03:34 2014 +0100
     1.3 @@ -0,0 +1,115 @@
     1.4 +<?xml version="1.0"?>
     1.5 +<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">
     1.6 +  <modelVersion>4.0.0</modelVersion>
     1.7 +  <parent>
     1.8 +    <groupId>org.netbeans.html</groupId>
     1.9 +    <artifactId>pom</artifactId>
    1.10 +    <version>0.7-SNAPSHOT</version>
    1.11 +  </parent>
    1.12 +  <groupId>org.netbeans.html</groupId>
    1.13 +  <artifactId>ko4j</artifactId>
    1.14 +  <version>0.7-SNAPSHOT</version>
    1.15 +  <packaging>bundle</packaging>
    1.16 +  <name>Knockout.js for Java</name>
    1.17 +  <url>http://maven.apache.org</url>
    1.18 +  <properties>
    1.19 +    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.20 +    <bundleSymbolicName>org.netbeans.html.ko4j</bundleSymbolicName>
    1.21 +  </properties>
    1.22 +  <build>
    1.23 +      <plugins>
    1.24 +          <plugin>
    1.25 +              <groupId>org.apache.felix</groupId>
    1.26 +              <artifactId>maven-bundle-plugin</artifactId>
    1.27 +          </plugin>
    1.28 +          <plugin>
    1.29 +              <groupId>org.apache.maven.plugins</groupId>
    1.30 +              <artifactId>maven-javadoc-plugin</artifactId>
    1.31 +              <configuration>
    1.32 +                  <skip>false</skip>
    1.33 +              </configuration>
    1.34 +          </plugin>
    1.35 +         <plugin>
    1.36 +            <groupId>org.apache.maven.plugins</groupId>
    1.37 +            <artifactId>maven-compiler-plugin</artifactId>
    1.38 +            <version>2.3.2</version>
    1.39 +            <configuration>
    1.40 +               <source>1.7</source>
    1.41 +               <target>1.7</target>
    1.42 +            </configuration>
    1.43 +         </plugin>
    1.44 +      </plugins>
    1.45 +  </build>
    1.46 +  <dependencies>
    1.47 +    <dependency>
    1.48 +        <groupId>com.oracle</groupId>
    1.49 +        <artifactId>javafx</artifactId>
    1.50 +        <version>2.2</version>
    1.51 +        <scope>system</scope>
    1.52 +        <systemPath>${jfxrt.jar}</systemPath>
    1.53 +    </dependency>
    1.54 +    <dependency>
    1.55 +        <groupId>de.twentyeleven.skysail</groupId>
    1.56 +        <artifactId>org.json-osgi</artifactId>
    1.57 +    </dependency>
    1.58 +    <dependency>
    1.59 +      <groupId>org.netbeans.html</groupId>
    1.60 +      <artifactId>net.java.html.json</artifactId>
    1.61 +      <version>${project.version}</version>
    1.62 +    </dependency>
    1.63 +    <dependency>
    1.64 +      <groupId>org.testng</groupId>
    1.65 +      <artifactId>testng</artifactId>
    1.66 +      <scope>test</scope>
    1.67 +    </dependency>
    1.68 +    <dependency>
    1.69 +      <groupId>${project.groupId}</groupId>
    1.70 +      <artifactId>net.java.html.json.tck</artifactId>
    1.71 +      <version>${project.version}</version>
    1.72 +      <scope>test</scope>
    1.73 +    </dependency>
    1.74 +    <dependency>
    1.75 +      <groupId>org.netbeans.api</groupId>
    1.76 +      <artifactId>org-openide-util-lookup</artifactId>
    1.77 +      <scope>provided</scope>
    1.78 +    </dependency>
    1.79 +    <dependency>
    1.80 +      <groupId>org.netbeans.html</groupId>
    1.81 +      <artifactId>net.java.html.boot</artifactId>
    1.82 +      <version>${project.version}</version>
    1.83 +      <type>jar</type>
    1.84 +    </dependency>
    1.85 +    <dependency>
    1.86 +      <groupId>${project.groupId}</groupId>
    1.87 +      <artifactId>net.java.html.boot.fx</artifactId>
    1.88 +      <version>${project.version}</version>
    1.89 +      <scope>test</scope>
    1.90 +    </dependency>
    1.91 +    <dependency>
    1.92 +      <groupId>org.glassfish.grizzly</groupId>
    1.93 +      <artifactId>grizzly-http-server</artifactId>
    1.94 +      <version>2.3.3</version>
    1.95 +      <scope>test</scope>
    1.96 +    </dependency>
    1.97 +    <dependency>
    1.98 +      <groupId>org.glassfish.grizzly</groupId>
    1.99 +      <artifactId>grizzly-websockets-server</artifactId>
   1.100 +      <version>2.3.3</version>
   1.101 +      <scope>test</scope>
   1.102 +      <type>jar</type>
   1.103 +    </dependency>
   1.104 +    <dependency>
   1.105 +        <groupId>org.glassfish.grizzly</groupId>
   1.106 +        <artifactId>grizzly-http-servlet</artifactId>
   1.107 +        <version>2.3.3</version>
   1.108 +        <scope>test</scope>
   1.109 +    </dependency>    
   1.110 +    <dependency>
   1.111 +        <groupId>javax.servlet</groupId>
   1.112 +        <artifactId>javax.servlet-api</artifactId>
   1.113 +        <scope>test</scope>
   1.114 +        <version>3.1.0</version>
   1.115 +    </dependency>
   1.116 +  </dependencies>
   1.117 +    <description>Binds net.java.html.json APIs together with knockout.js</description>
   1.118 +</project>