pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 12 Dec 2012 18:18:07 +0100
branchbenchmarks
changeset 311 84c05018e079
parent 218 bbc04118d571
child 314 1a3f102e5ea5
permissions -rw-r--r--
Copying the test resources next to built classes and js file. Modifying the test to properly use the new bck2brwsr calling scheme.
     1 <?xml version="1.0" encoding="UTF-8"?>
     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   <groupId>org.apidesign</groupId>
     5   <artifactId>bck2brwsr</artifactId>
     6   <version>0.3-SNAPSHOT</version>
     7   <packaging>pom</packaging>
     8   <name>Back 2 Browser</name>
     9   <modules>
    10     <module>vm</module>
    11     <module>emul</module>
    12     <module>core</module>
    13     <module>mojo</module>
    14     <module>javaquery</module>
    15     <module>javap</module>
    16     <module>benchmarks</module>
    17   </modules>
    18   <licenses>
    19       <license>
    20           <name>GPL-2.0</name>
    21           <url>http://opensource.org/licenses/GPL-2.0</url>
    22           <distribution>repo</distribution>
    23       </license>
    24   </licenses>
    25   <organization>
    26       <name>API Design</name>
    27       <url>http://apidesign.org</url>
    28   </organization>
    29   <repositories>
    30       <repository>
    31           <id>netbeans</id>
    32           <name>NetBeans</name>
    33           <url>http://bits.netbeans.org/maven2/</url>
    34       </repository>
    35   </repositories>
    36   <pluginRepositories>
    37       <pluginRepository>
    38           <id>mc-release</id>
    39           <name>Local Maven repository of releases</name>
    40           <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
    41           <snapshots>
    42               <enabled>false</enabled>
    43           </snapshots>
    44           <releases>
    45               <enabled>true</enabled>
    46           </releases>
    47       </pluginRepository>
    48   </pluginRepositories>
    49   <build>
    50       <plugins>
    51          <plugin>
    52               <inherited>false</inherited>
    53               <groupId>com.mycila.maven-license-plugin</groupId>
    54               <artifactId>maven-license-plugin</artifactId>
    55               <version>1.9.0</version>
    56               <executions>
    57                   <execution>
    58                       <id>blah</id>
    59                       <goals>
    60                           <goal>check</goal>
    61                       </goals>
    62                   </execution>
    63               </executions>
    64               <configuration>
    65                   <aggregate>true</aggregate>
    66                   <basedir>${basedir}</basedir>
    67                   <header>COPYING</header>
    68                   <strictCheck>true</strictCheck>
    69                   <excludes>
    70                        <exclude>emul/**</exclude>
    71                        <exclude>javap/**</exclude>
    72                        <exclude>*</exclude>
    73                        <exclude>.*/**</exclude>
    74                        <exclude>benchmarks/**</exclude>
    75                   </excludes>
    76               </configuration>
    77           </plugin>
    78       </plugins>
    79   </build>
    80   <dependencyManagement>
    81       <dependencies>
    82         <dependency>
    83           <groupId>org.testng</groupId>
    84           <artifactId>testng</artifactId>
    85           <version>6.7</version>
    86           <scope>test</scope>
    87           <exclusions>
    88             <exclusion>
    89               <artifactId>junit</artifactId>
    90               <groupId>junit</groupId>
    91             </exclusion>
    92           </exclusions>
    93         </dependency>
    94         <dependency>
    95           <groupId>org.netbeans.api</groupId>
    96           <artifactId>org-netbeans-modules-classfile</artifactId>
    97           <version>RELEASE72</version>
    98           <type>jar</type>
    99         </dependency>
   100         <dependency>
   101           <groupId>org.netbeans.api</groupId>
   102           <artifactId>org-openide-util-lookup</artifactId>
   103           <version>RELEASE72</version>
   104           <scope>compile</scope>
   105           <type>jar</type>
   106         </dependency>
   107       </dependencies>
   108   </dependencyManagement>
   109   <properties>
   110       <license>COPYING</license>
   111   </properties>
   112 </project>