ko-fx/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 16 Dec 2013 15:48:09 +0100
branchnetbeans
changeset 361 700087d2a5d3
parent 359 6b23a639bdb5
permissions -rw-r--r--
Using longer bundle symbolic names
     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>0.7-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.netbeans.html</groupId>
    10   <artifactId>ko-fx</artifactId>
    11   <version>0.7-SNAPSHOT</version>
    12   <packaging>bundle</packaging>
    13   <name>Knockout.fx</name>
    14   <url>http://maven.apache.org</url>
    15   <properties>
    16     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    17     <bundleSymbolicName>org.netbeans.html.ko-fx</bundleSymbolicName>
    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.apache.maven.plugins</groupId>
    27               <artifactId>maven-javadoc-plugin</artifactId>
    28               <configuration>
    29                   <skip>false</skip>
    30               </configuration>
    31           </plugin>
    32          <plugin>
    33             <groupId>org.apache.maven.plugins</groupId>
    34             <artifactId>maven-compiler-plugin</artifactId>
    35             <version>2.3.2</version>
    36             <configuration>
    37                <source>1.7</source>
    38                <target>1.7</target>
    39             </configuration>
    40          </plugin>
    41       </plugins>
    42   </build>
    43   <dependencies>
    44     <dependency>
    45         <groupId>com.oracle</groupId>
    46         <artifactId>javafx</artifactId>
    47         <version>2.2</version>
    48         <scope>system</scope>
    49         <systemPath>${jfxrt.jar}</systemPath>
    50     </dependency>
    51     <dependency>
    52         <groupId>de.twentyeleven.skysail</groupId>
    53         <artifactId>org.json-osgi</artifactId>
    54     </dependency>
    55     <dependency>
    56       <groupId>org.netbeans.html</groupId>
    57       <artifactId>net.java.html.json</artifactId>
    58       <version>${project.version}</version>
    59     </dependency>
    60     <dependency>
    61       <groupId>org.testng</groupId>
    62       <artifactId>testng</artifactId>
    63       <scope>test</scope>
    64     </dependency>
    65     <dependency>
    66       <groupId>${project.groupId}</groupId>
    67       <artifactId>net.java.html.json.tck</artifactId>
    68       <version>${project.version}</version>
    69       <scope>test</scope>
    70     </dependency>
    71     <dependency>
    72       <groupId>org.netbeans.api</groupId>
    73       <artifactId>org-openide-util-lookup</artifactId>
    74       <scope>provided</scope>
    75     </dependency>
    76     <dependency>
    77       <groupId>org.netbeans.html</groupId>
    78       <artifactId>net.java.html.boot</artifactId>
    79       <version>${project.version}</version>
    80       <type>jar</type>
    81     </dependency>
    82     <dependency>
    83       <groupId>${project.groupId}</groupId>
    84       <artifactId>net.java.html.boot.fx</artifactId>
    85       <version>${project.version}</version>
    86       <scope>test</scope>
    87     </dependency>
    88     <dependency>
    89       <groupId>org.glassfish.grizzly</groupId>
    90       <artifactId>grizzly-http-server</artifactId>
    91       <version>2.3.3</version>
    92       <scope>test</scope>
    93     </dependency>
    94     <dependency>
    95       <groupId>org.glassfish.grizzly</groupId>
    96       <artifactId>grizzly-websockets-server</artifactId>
    97       <version>2.3.3</version>
    98       <scope>test</scope>
    99       <type>jar</type>
   100     </dependency>
   101     <dependency>
   102         <groupId>org.glassfish.grizzly</groupId>
   103         <artifactId>grizzly-http-servlet</artifactId>
   104         <version>2.3.3</version>
   105         <scope>test</scope>
   106     </dependency>    
   107     <dependency>
   108         <groupId>javax.servlet</groupId>
   109         <artifactId>javax.servlet-api</artifactId>
   110         <scope>test</scope>
   111         <version>3.1.0</version>
   112     </dependency>
   113   </dependencies>
   114     <description>Binds net.java.html.json APIs together with JavaFX WebView.</description>
   115 </project>