ko/fx/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 25 Mar 2016 21:47:32 +0100
changeset 1913 37194f101d35
parent 1911 fe2e6f5a2044
child 1961 e9e1b1e863ba
permissions -rw-r--r--
[maven-release-plugin] prepare for next development iteration
     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>1.0-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.bck2brwsr</groupId>
    10   <artifactId>ko-fx</artifactId>
    11   <version>1.0-SNAPSHOT</version>
    12   <name>Knockout.fx in Brwsr</name>
    13   <url>http://maven.apache.org</url>
    14   <properties>
    15     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    16   </properties>
    17   <build>
    18       <plugins>
    19           <plugin>
    20               <groupId>org.apache.maven.plugins</groupId>
    21               <artifactId>maven-javadoc-plugin</artifactId>
    22               <configuration>
    23                   <skip>false</skip>
    24               </configuration>
    25           </plugin>
    26           <plugin>
    27               <groupId>org.apache.maven.plugins</groupId>
    28               <artifactId>maven-surefire-plugin</artifactId>
    29               <configuration>
    30                   <forkMode>always</forkMode>
    31               </configuration>
    32           </plugin>
    33       </plugins>
    34   </build>
    35   <dependencies>
    36     <dependency>
    37         <groupId>com.oracle</groupId>
    38         <artifactId>javafx</artifactId>
    39         <version>2.2</version>
    40         <scope>system</scope>
    41         <systemPath>${jfxrt.jar}</systemPath>
    42     </dependency>
    43     <dependency>
    44       <groupId>org.json</groupId>
    45       <artifactId>json</artifactId>
    46       <version>20090211</version>
    47       <type>jar</type>
    48     </dependency>
    49     <dependency>
    50       <groupId>org.netbeans.html</groupId>
    51       <artifactId>net.java.html.json</artifactId>
    52       <version>${net.java.html.version}</version>
    53     </dependency>
    54     <dependency>
    55       <groupId>org.testng</groupId>
    56       <artifactId>testng</artifactId>
    57       <scope>test</scope>
    58     </dependency>
    59     <dependency>
    60       <groupId>org.netbeans.html</groupId>
    61       <artifactId>net.java.html.json.tck</artifactId>
    62       <version>${net.java.html.version}</version>
    63       <scope>test</scope>
    64     </dependency>
    65     <dependency>
    66       <groupId>org.netbeans.api</groupId>
    67       <artifactId>org-openide-util</artifactId>
    68       <scope>provided</scope>
    69     </dependency>
    70     <dependency>
    71       <groupId>org.apidesign.bck2brwsr</groupId>
    72       <artifactId>launcher.fx</artifactId>
    73       <version>${project.version}</version>
    74       <scope>test</scope>
    75     </dependency>
    76     <dependency>
    77       <groupId>org.netbeans.html</groupId>
    78       <artifactId>net.java.html.boot</artifactId>
    79       <version>${net.java.html.version}</version>
    80       <type>jar</type>
    81     </dependency>
    82     <dependency>
    83       <groupId>org.netbeans.html</groupId>
    84       <artifactId>ko4j</artifactId>
    85       <version>${net.java.html.version}</version>
    86       <type>jar</type>
    87     </dependency>
    88     <dependency>
    89       <groupId>org.apidesign.bck2brwsr</groupId>
    90       <artifactId>vmtest</artifactId>
    91       <version>${project.version}</version>
    92       <scope>test</scope>
    93       <type>jar</type>
    94     </dependency>
    95     <dependency>
    96       <groupId>org.netbeans.html</groupId>
    97       <artifactId>ko-ws-tyrus</artifactId>
    98       <version>${net.java.html.version}</version>
    99       <scope>test</scope>
   100     </dependency>
   101   </dependencies>
   102   <profiles>
   103       <profile>
   104           <id>jdk8</id>
   105           <activation>
   106               <file>
   107                   <exists>${java.home}/lib/ext/jfxrt.jar</exists>
   108               </file>
   109           </activation>
   110           <properties>
   111             <jfxrt.jar>${java.home}/lib/ext/jfxrt.jar</jfxrt.jar>
   112           </properties>
   113       </profile>
   114       <profile>
   115           <id>jdk7</id>
   116           <activation>
   117               <file>
   118                   <exists>${java.home}/lib/jfxrt.jar</exists>
   119               </file>
   120           </activation>
   121           <properties>
   122             <jfxrt.jar>${java.home}/lib/jfxrt.jar</jfxrt.jar>
   123           </properties>
   124       </profile>
   125   </profiles>
   126 </project>