ko/fx/pom.xml
branchclassloader
changeset 1230 466c30fd9cb0
child 1231 316fc30638a6
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ko/fx/pom.xml	Wed Jun 26 19:57:38 2013 +0200
     1.3 @@ -0,0 +1,84 @@
     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.apidesign.bck2brwsr</groupId>
     1.9 +    <artifactId>ko</artifactId>
    1.10 +    <version>0.8-SNAPSHOT</version>
    1.11 +  </parent>
    1.12 +  <groupId>org.apidesign.html</groupId>
    1.13 +  <artifactId>ko-fx</artifactId>
    1.14 +  <version>0.8-SNAPSHOT</version>
    1.15 +  <name>Knockout.fx in Brwsr</name>
    1.16 +  <url>http://maven.apache.org</url>
    1.17 +  <properties>
    1.18 +    <jfxrt.jar>${java.home}/lib/jfxrt.jar</jfxrt.jar>
    1.19 +    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.20 +  </properties>
    1.21 +  <build>
    1.22 +      <plugins>
    1.23 +          <plugin>
    1.24 +              <groupId>org.apache.maven.plugins</groupId>
    1.25 +              <artifactId>maven-javadoc-plugin</artifactId>
    1.26 +              <configuration>
    1.27 +                  <skip>false</skip>
    1.28 +              </configuration>
    1.29 +          </plugin>
    1.30 +      </plugins>
    1.31 +  </build>
    1.32 +  <dependencies>
    1.33 +    <dependency>
    1.34 +        <groupId>com.oracle</groupId>
    1.35 +        <artifactId>javafx</artifactId>
    1.36 +        <version>2.2</version>
    1.37 +        <scope>system</scope>
    1.38 +        <systemPath>${jfxrt.jar}</systemPath>
    1.39 +    </dependency>
    1.40 +    <dependency>
    1.41 +      <groupId>org.json</groupId>
    1.42 +      <artifactId>json</artifactId>
    1.43 +      <version>20090211</version>
    1.44 +      <type>jar</type>
    1.45 +    </dependency>
    1.46 +    <dependency>
    1.47 +      <groupId>org.apidesign.html</groupId>
    1.48 +      <artifactId>net.java.html.json</artifactId>
    1.49 +      <version>${net.java.html.version}</version>
    1.50 +    </dependency>
    1.51 +    <dependency>
    1.52 +      <groupId>org.testng</groupId>
    1.53 +      <artifactId>testng</artifactId>
    1.54 +      <scope>test</scope>
    1.55 +    </dependency>
    1.56 +    <dependency>
    1.57 +      <groupId>${project.groupId}</groupId>
    1.58 +      <artifactId>net.java.html.json.tck</artifactId>
    1.59 +      <version>${net.java.html.version}</version>
    1.60 +      <scope>test</scope>
    1.61 +    </dependency>
    1.62 +    <dependency>
    1.63 +      <groupId>org.netbeans.api</groupId>
    1.64 +      <artifactId>org-openide-util</artifactId>
    1.65 +      <scope>provided</scope>
    1.66 +    </dependency>
    1.67 +    <dependency>
    1.68 +      <groupId>org.apidesign.bck2brwsr</groupId>
    1.69 +      <artifactId>launcher.fx</artifactId>
    1.70 +      <version>${project.version}</version>
    1.71 +      <scope>test</scope>
    1.72 +    </dependency>
    1.73 +    <dependency>
    1.74 +      <groupId>org.apidesign.html</groupId>
    1.75 +      <artifactId>net.java.html.boot</artifactId>
    1.76 +      <version>${project.version}</version>
    1.77 +      <type>jar</type>
    1.78 +    </dependency>
    1.79 +    <dependency>
    1.80 +      <groupId>org.apidesign.bck2brwsr</groupId>
    1.81 +      <artifactId>vmtest</artifactId>
    1.82 +      <version>${project.version}</version>
    1.83 +      <scope>test</scope>
    1.84 +      <type>jar</type>
    1.85 +    </dependency>
    1.86 +  </dependencies>
    1.87 +</project>