boot-fx/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Sun, 11 Oct 2015 07:24:32 +0200
changeset 1008 c535c36881af
parent 1005 c7f11fbd5475
child 1021 c918924ad3c5
permissions -rw-r--r--
#255831: BrowserBuilder.showAndWait can be used multiple times with JavaFX presenter. Demonstrated by running the boot-fx tests in 'fork once' mode.
     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>2.0-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.netbeans.html</groupId>
    10   <artifactId>net.java.html.boot.fx</artifactId>
    11   <version>2.0-SNAPSHOT</version>
    12   <name>FX WebView Bootstrap</name>
    13   <packaging>bundle</packaging>
    14   <url>http://maven.apache.org</url>
    15   <properties>
    16     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    17     <publicPackages>net.java.html.boot.fx</publicPackages>
    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       </plugins>
    30   </build>
    31   <dependencies>
    32     <dependency>
    33         <groupId>com.oracle</groupId>
    34         <artifactId>javafx</artifactId>
    35         <version>2.2</version>
    36         <scope>system</scope>
    37         <systemPath>${jfxrt.jar}</systemPath>
    38     </dependency>
    39     <dependency>
    40       <groupId>org.netbeans.api</groupId>
    41       <artifactId>org-openide-util-lookup</artifactId>
    42       <scope>provided</scope>
    43     </dependency>
    44     <dependency>
    45       <groupId>org.netbeans.html</groupId>
    46       <artifactId>net.java.html.boot</artifactId>
    47       <version>${project.version}</version>
    48       <type>jar</type>
    49     </dependency>
    50     <dependency>
    51       <groupId>org.testng</groupId>
    52       <artifactId>testng</artifactId>
    53       <scope>test</scope>
    54       <type>jar</type>
    55     </dependency>
    56     <dependency>
    57       <groupId>${project.groupId}</groupId>
    58       <artifactId>net.java.html.json.tck</artifactId>
    59       <version>${project.version}</version>
    60       <scope>test</scope>
    61     </dependency>
    62   </dependencies>
    63     <description>A presentation provider to show JavaFX WebView 
    64 when a Java/HTML based application is about to boot.</description>
    65 </project>