launcher/fx/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 28 Apr 2013 17:42:49 +0200
branchmodel
changeset 1041 f18b7262fe91
parent 1033 launcher/http/pom.xml@b8773b7b9ecd
child 1043 bd80952bfd11
permissions -rw-r--r--
FX launcher can start tests
     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.apidesign.bck2brwsr</groupId>
     6     <artifactId>launcher-pom</artifactId>
     7     <version>0.7-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.bck2brwsr</groupId>
    10   <artifactId>launcher.fx</artifactId>
    11   <version>0.7-SNAPSHOT</version>
    12   <name>FXBrwsr Launcher</name>
    13   <url>http://maven.apache.org</url>
    14     <build>
    15         <plugins>
    16             <plugin>
    17                 <groupId>org.apache.maven.plugins</groupId>
    18                 <artifactId>maven-compiler-plugin</artifactId>
    19                 <version>2.3.2</version>
    20                 <configuration>
    21                     <source>1.7</source>
    22                     <target>1.7</target>
    23                 </configuration>
    24             </plugin>
    25         </plugins>
    26     </build>
    27     <properties>
    28     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    29   </properties>
    30   <dependencies>
    31     <dependency>
    32       <groupId>${project.groupId}</groupId>
    33       <artifactId>launcher</artifactId>
    34       <version>${project.version}</version>
    35     </dependency>
    36     <dependency>
    37       <groupId>org.glassfish.grizzly</groupId>
    38       <artifactId>grizzly-http-server</artifactId>
    39       <version>2.2.19</version>
    40     </dependency>
    41     <dependency>
    42       <groupId>com.oracle</groupId>
    43       <artifactId>javafx</artifactId>
    44       <version>2.2</version>
    45       <scope>system</scope>
    46       <systemPath>${java.home}/lib/jfxrt.jar</systemPath>
    47     </dependency>
    48     <dependency>
    49         <groupId>${project.groupId}</groupId>
    50         <artifactId>vm4brwsr</artifactId>
    51         <version>${project.version}</version>
    52     </dependency>
    53   </dependencies>
    54 </project>