launcher/fx/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 26 May 2014 14:33:11 +0200
branchclosure
changeset 1595 19d0484c1916
parent 1489 8d0fc428ff72
parent 1437 3ec3ae9699ef
child 1624 3e565843a131
permissions -rw-r--r--
Need to flush the stack before destroying it with return value of a function
     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.9-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.bck2brwsr</groupId>
    10   <artifactId>launcher.fx</artifactId>
    11   <version>0.9-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.6</source>
    22                     <target>1.6</target>
    23                 </configuration>
    24             </plugin>
    25             <plugin>
    26                 <groupId>org.apache.maven.plugins</groupId>
    27                 <artifactId>maven-javadoc-plugin</artifactId>
    28                 <configuration>
    29                     <subpackages>org.apidesign.bck2brwsr.launcher.fx</subpackages>
    30                     <skip>false</skip>
    31                 </configuration>
    32             </plugin>
    33         </plugins>
    34     </build>
    35     <properties>
    36         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    37     </properties>
    38   <dependencies>
    39     <dependency>
    40       <groupId>${project.groupId}</groupId>
    41       <artifactId>launcher</artifactId>
    42       <version>${project.version}</version>
    43     </dependency>
    44     <dependency>
    45       <groupId>org.glassfish.grizzly</groupId>
    46       <artifactId>grizzly-http-server</artifactId>
    47       <version>${grizzly.version}</version>
    48     </dependency>
    49     <dependency>
    50       <groupId>com.oracle</groupId>
    51       <artifactId>javafx</artifactId>
    52       <version>2.2</version>
    53       <scope>system</scope>
    54       <systemPath>${jfxrt.jar}</systemPath>
    55     </dependency>
    56     <dependency>
    57       <groupId>org.testng</groupId>
    58       <artifactId>testng</artifactId>
    59       <scope>test</scope>
    60     </dependency>
    61     <!--
    62     <dependency>
    63       <groupId>org.netbeans.modules</groupId>
    64       <artifactId>org-netbeans-bootstrap</artifactId>
    65       <version>RELEASE73</version>
    66     </dependency>
    67     -->
    68     <dependency>
    69       <groupId>${project.groupId}</groupId>
    70       <artifactId>core</artifactId>
    71       <version>${project.version}</version>
    72       <scope>compile</scope>
    73     </dependency>
    74     <dependency>
    75       <groupId>org.ow2.asm</groupId>
    76       <artifactId>asm</artifactId>
    77       <version>4.1</version>
    78     </dependency>
    79     <dependency>
    80       <groupId>org.netbeans.html</groupId>
    81       <artifactId>net.java.html.boot</artifactId>
    82       <version>${net.java.html.version}</version>
    83     </dependency>
    84     <dependency>
    85         <groupId>org.glassfish.grizzly</groupId>
    86         <artifactId>grizzly-websockets-server</artifactId>
    87         <version>${grizzly.version}</version>
    88         <type>jar</type>
    89     </dependency>
    90     <dependency>
    91         <groupId>org.glassfish.grizzly</groupId>
    92         <artifactId>grizzly-http-servlet</artifactId>
    93         <version>${grizzly.version}</version>
    94     </dependency>    
    95     <dependency>
    96         <groupId>javax.servlet</groupId>
    97         <artifactId>javax.servlet-api</artifactId>
    98         <version>3.1.0</version>
    99     </dependency>
   100   </dependencies>
   101 </project>