ko/fx/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 26 Aug 2013 08:56:37 +0200
changeset 1249 cdaeea7becf2
parent 1233 43fba26ba0c0
child 1276 0faedeb34895
permissions -rw-r--r--
First updates to run with forthcoming version 0.5 - WebSockets in FX launcher and etc.
     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>ko</artifactId>
     7     <version>0.8-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.bck2brwsr</groupId>
    10   <artifactId>ko-fx</artifactId>
    11   <version>0.8-SNAPSHOT</version>
    12   <name>Knockout.fx in Brwsr</name>
    13   <url>http://maven.apache.org</url>
    14   <properties>
    15     <jfxrt.jar>${java.home}/lib/jfxrt.jar</jfxrt.jar>
    16     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    17   </properties>
    18   <build>
    19       <plugins>
    20           <plugin>
    21               <groupId>org.apache.maven.plugins</groupId>
    22               <artifactId>maven-javadoc-plugin</artifactId>
    23               <configuration>
    24                   <skip>false</skip>
    25               </configuration>
    26           </plugin>
    27       </plugins>
    28   </build>
    29   <dependencies>
    30     <dependency>
    31         <groupId>com.oracle</groupId>
    32         <artifactId>javafx</artifactId>
    33         <version>2.2</version>
    34         <scope>system</scope>
    35         <systemPath>${jfxrt.jar}</systemPath>
    36     </dependency>
    37     <dependency>
    38       <groupId>org.json</groupId>
    39       <artifactId>json</artifactId>
    40       <version>20090211</version>
    41       <type>jar</type>
    42     </dependency>
    43     <dependency>
    44       <groupId>org.apidesign.html</groupId>
    45       <artifactId>net.java.html.json</artifactId>
    46       <version>${net.java.html.version}</version>
    47     </dependency>
    48     <dependency>
    49       <groupId>org.testng</groupId>
    50       <artifactId>testng</artifactId>
    51       <scope>test</scope>
    52     </dependency>
    53     <dependency>
    54       <groupId>org.apidesign.html</groupId>
    55       <artifactId>net.java.html.json.tck</artifactId>
    56       <version>${net.java.html.version}</version>
    57       <scope>test</scope>
    58     </dependency>
    59     <dependency>
    60       <groupId>org.netbeans.api</groupId>
    61       <artifactId>org-openide-util</artifactId>
    62       <scope>provided</scope>
    63     </dependency>
    64     <dependency>
    65       <groupId>org.apidesign.bck2brwsr</groupId>
    66       <artifactId>launcher.fx</artifactId>
    67       <version>${project.version}</version>
    68       <scope>test</scope>
    69     </dependency>
    70     <dependency>
    71       <groupId>org.apidesign.html</groupId>
    72       <artifactId>net.java.html.boot</artifactId>
    73       <version>${net.java.html.version}</version>
    74       <type>jar</type>
    75     </dependency>
    76     <dependency>
    77       <groupId>org.apidesign.html</groupId>
    78       <artifactId>ko-fx</artifactId>
    79       <version>${net.java.html.version}</version>
    80       <type>jar</type>
    81     </dependency>
    82     <dependency>
    83       <groupId>org.apidesign.bck2brwsr</groupId>
    84       <artifactId>vmtest</artifactId>
    85       <version>${project.version}</version>
    86       <scope>test</scope>
    87       <type>jar</type>
    88     </dependency>
    89     <dependency>
    90       <groupId>org.apidesign.html</groupId>
    91       <artifactId>ko-ws-tyrus</artifactId>
    92       <version>${net.java.html.version}</version>
    93       <scope>test</scope>
    94     </dependency>
    95   </dependencies>
    96   <profiles>
    97       <profile>
    98           <id>jdk8</id>
    99           <activation>
   100               <file>
   101                   <exists>${java.home}/lib/ext/jfxrt.jar</exists>
   102               </file>
   103           </activation>
   104           <properties>
   105             <jfxrt.jar>${java.home}/lib/ext/jfxrt.jar</jfxrt.jar>
   106           </properties>
   107       </profile>
   108       <profile>
   109           <id>jdk7</id>
   110           <activation>
   111               <file>
   112                   <exists>${java.home}/lib/jfxrt.jar</exists>
   113               </file>
   114           </activation>
   115           <properties>
   116             <jfxrt.jar>${java.home}/lib/jfxrt.jar</jfxrt.jar>
   117           </properties>
   118       </profile>
   119   </profiles>
   120 </project>