javaquery/api/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 18 Apr 2013 23:09:30 +0200
branchfx
changeset 1016 6dc2c6c752df
parent 992 bae9b96bfd2c
permissions -rw-r--r--
Can execute 'dual' tests: bck2brwsr can use regular launcher, javaquery.api can use FX Web View one
     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>javaquery</artifactId>
     7     <version>0.6-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.bck2brwsr</groupId>
    10   <artifactId>javaquery.api</artifactId>
    11   <version>0.6-SNAPSHOT</version>
    12   <name>JavaQuery API</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             <plugin>
    26                 <groupId>org.apache.maven.plugins</groupId>
    27                 <artifactId>maven-javadoc-plugin</artifactId>
    28                 <configuration>
    29                     <subpackages>org.apidesign.bck2brwsr.htmlpage.api</subpackages>
    30                     <skip>false</skip>
    31                 </configuration>
    32             </plugin>
    33             <plugin>
    34                 <groupId>org.apache.maven.plugins</groupId>
    35                 <artifactId>maven-surefire-plugin</artifactId>
    36                 <configuration>
    37                     <systemPropertyVariables>
    38                         <vmtest.brwsrs>fx</vmtest.brwsrs>
    39                     </systemPropertyVariables>
    40                 </configuration>
    41             </plugin>
    42         </plugins>
    43     </build>
    44   <properties>
    45     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    46   </properties>
    47   <dependencies>
    48     <dependency>
    49       <groupId>org.testng</groupId>
    50       <artifactId>testng</artifactId>
    51       <scope>test</scope>
    52       <exclusions>
    53         <exclusion>
    54           <artifactId>junit</artifactId>
    55           <groupId>junit</groupId>
    56         </exclusion>
    57       </exclusions>
    58     </dependency>
    59     <dependency>
    60       <groupId>org.netbeans.api</groupId>
    61       <artifactId>org-openide-util-lookup</artifactId>
    62       <scope>provided</scope>
    63     </dependency>
    64     <dependency>
    65       <groupId>org.apidesign.bck2brwsr</groupId>
    66       <artifactId>emul</artifactId>
    67       <version>${project.version}</version>
    68       <classifier>rt</classifier>
    69       <type>jar</type>
    70       <scope>compile</scope>
    71     </dependency>
    72     <dependency>
    73       <groupId>org.apidesign.bck2brwsr</groupId>
    74       <artifactId>vm4brwsr</artifactId>
    75       <version>${project.version}</version>
    76       <type>jar</type>
    77       <scope>test</scope>
    78     </dependency>
    79     <dependency>
    80       <groupId>${project.groupId}</groupId>
    81       <artifactId>vmtest</artifactId>
    82       <version>${project.version}</version>
    83       <scope>test</scope>
    84     </dependency>
    85     <dependency>
    86         <groupId>com.oracle</groupId>
    87         <artifactId>javafx</artifactId>
    88         <version>2.2</version>
    89         <scope>system</scope>
    90         <systemPath>${java.home}/lib/jfxrt.jar</systemPath>
    91     </dependency>
    92     <dependency>
    93       <groupId>org.json</groupId>
    94       <artifactId>json</artifactId>
    95       <version>20090211</version>
    96       <type>jar</type>
    97     </dependency>
    98   </dependencies>
    99 </project>