ko/bck2brwsr/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 26 Dec 2014 21:00:36 +0100
changeset 1759 e98ac4385490
parent 1757 837ea3e1cbaf
child 1766 75671373fa87
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-bck2brwsr</artifactId>
    11   <version>1.0-SNAPSHOT</version>
    12   <name>Knockout.b2b</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                   <skip>false</skip>
    30               </configuration>
    31           </plugin>
    32           <plugin>
    33               <groupId>org.apidesign.bck2brwsr</groupId>
    34               <artifactId>bck2brwsr-maven-plugin</artifactId>
    35               <version>${project.version}</version>
    36               <executions>
    37                   <execution>
    38                       <goals>
    39                           <goal>library</goal>
    40                       </goals>
    41                   </execution>
    42               </executions>
    43               <configuration>
    44                   <aotDeps>
    45                       <aotDep>org.netbeans.html:*</aotDep>
    46                   </aotDeps>
    47                   <minified>false</minified>
    48                   <debug>false</debug>
    49               </configuration>
    50           </plugin>
    51       </plugins>
    52   </build>
    53   <dependencies>
    54     <dependency>
    55       <groupId>org.testng</groupId>
    56       <artifactId>testng</artifactId>
    57       <scope>test</scope>
    58       <exclusions>
    59         <exclusion>
    60           <artifactId>junit</artifactId>
    61           <groupId>junit</groupId>
    62         </exclusion>
    63       </exclusions>
    64     </dependency>
    65     <dependency>
    66       <groupId>org.netbeans.api</groupId>
    67       <artifactId>org-openide-util-lookup</artifactId>
    68       <scope>test</scope>
    69     </dependency>
    70     <dependency>
    71       <groupId>org.apidesign.bck2brwsr</groupId>
    72       <artifactId>emul</artifactId>
    73       <version>${project.version}</version>
    74       <classifier>rt</classifier>
    75       <type>jar</type>
    76       <scope>compile</scope>
    77     </dependency>
    78     <dependency>
    79       <groupId>org.apidesign.bck2brwsr</groupId>
    80       <artifactId>vm4brwsr</artifactId>
    81       <version>${project.version}</version>
    82       <type>jar</type>
    83       <scope>test</scope>
    84       <exclusions>
    85         <exclusion>
    86           <artifactId>json</artifactId>
    87           <groupId>org.json</groupId>
    88         </exclusion>
    89       </exclusions>
    90     </dependency>
    91     <dependency>
    92       <groupId>org.apidesign.bck2brwsr</groupId>
    93       <artifactId>vmtest</artifactId>
    94       <version>${project.version}</version>
    95       <scope>test</scope>
    96     </dependency>
    97     <dependency>
    98       <groupId>org.apidesign.bck2brwsr</groupId>
    99       <artifactId>launcher.http</artifactId>
   100       <version>${project.version}</version>
   101       <scope>test</scope>
   102       <exclusions>
   103         <exclusion>
   104           <artifactId>asm</artifactId>
   105           <groupId>org.ow2.asm</groupId>
   106         </exclusion>
   107       </exclusions>
   108     </dependency>
   109     <dependency>
   110       <groupId>org.netbeans.html</groupId>
   111       <artifactId>net.java.html.json</artifactId>
   112       <version>${net.java.html.version}</version>
   113     </dependency>
   114     <dependency>
   115       <groupId>org.netbeans.html</groupId>
   116       <artifactId>net.java.html.json.tck</artifactId>
   117       <version>${net.java.html.version}</version>
   118       <scope>test</scope>
   119     </dependency>
   120     <dependency>
   121       <groupId>org.netbeans.html</groupId>
   122       <artifactId>net.java.html.boot</artifactId>
   123       <version>${net.java.html.version}</version>
   124       <type>jar</type>
   125       <exclusions>
   126         <exclusion>
   127           <artifactId>asm</artifactId>
   128           <groupId>org.ow2.asm</groupId>
   129         </exclusion>
   130       </exclusions>
   131     </dependency>
   132     <dependency>
   133       <groupId>org.netbeans.html</groupId>
   134       <artifactId>ko4j</artifactId>
   135       <version>${net.java.html.version}</version>
   136     </dependency>
   137     <dependency>
   138       <groupId>org.netbeans.html</groupId>
   139       <artifactId>net.java.html.geo</artifactId>
   140       <version>${net.java.html.version}</version>
   141     </dependency>
   142     <dependency>
   143       <groupId>org.netbeans.html</groupId>
   144       <artifactId>net.java.html.sound</artifactId>
   145       <version>${net.java.html.version}</version>
   146     </dependency>
   147   </dependencies>
   148 </project>