pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 18 Jan 2013 22:16:04 +0100
branchArrayReflect
changeset 486 947269b26dc0
parent 421 0236ad6ab4d2
child 467 c50c541368f8
child 492 854286e49061
permissions -rw-r--r--
Array.get can convert basic types
     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     <module>launcher</module>
    18     <module>vmtest</module>
    19   </modules>
    20   <licenses>
    21       <license>
    22           <name>GPL-2.0</name>
    23           <url>http://opensource.org/licenses/GPL-2.0</url>
    24           <distribution>repo</distribution>
    25       </license>
    26   </licenses>
    27   <organization>
    28       <name>API Design</name>
    29       <url>http://apidesign.org</url>
    30   </organization>
    31   <repositories>
    32       <repository>
    33           <id>netbeans</id>
    34           <name>NetBeans</name>
    35           <url>http://bits.netbeans.org/maven2/</url>
    36       </repository>
    37   </repositories>
    38   <pluginRepositories>
    39       <pluginRepository>
    40           <id>mc-release</id>
    41           <name>Local Maven repository of releases</name>
    42           <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
    43           <snapshots>
    44               <enabled>false</enabled>
    45           </snapshots>
    46           <releases>
    47               <enabled>true</enabled>
    48           </releases>
    49       </pluginRepository>
    50   </pluginRepositories>
    51   <build>
    52       <plugins>
    53          <plugin>
    54               <inherited>false</inherited>
    55               <groupId>com.mycila.maven-license-plugin</groupId>
    56               <artifactId>maven-license-plugin</artifactId>
    57               <version>1.9.0</version>
    58               <executions>
    59                   <execution>
    60                       <id>blah</id>
    61                       <goals>
    62                           <goal>check</goal>
    63                       </goals>
    64                   </execution>
    65               </executions>
    66               <configuration>
    67                   <aggregate>true</aggregate>
    68                   <basedir>${basedir}</basedir>
    69                   <header>COPYING</header>
    70                   <strictCheck>true</strictCheck>
    71                   <excludes>
    72                        <exclude>emul/**</exclude>
    73                        <exclude>javap/**</exclude>
    74                        <exclude>*</exclude>
    75                        <exclude>.*/**</exclude>
    76                        <exclude>mojo/src/main/resources/archetype-resources/**</exclude>
    77                        <exclude>vmtest/src/test/resources/**</exclude>
    78                   </excludes>
    79               </configuration>
    80           </plugin>
    81       </plugins>
    82   </build>
    83   <dependencyManagement>
    84       <dependencies>
    85         <dependency>
    86           <groupId>org.testng</groupId>
    87           <artifactId>testng</artifactId>
    88           <version>6.7</version>
    89           <scope>test</scope>
    90           <exclusions>
    91             <exclusion>
    92               <artifactId>junit</artifactId>
    93               <groupId>junit</groupId>
    94             </exclusion>
    95           </exclusions>
    96         </dependency>
    97         <dependency>
    98           <groupId>org.netbeans.api</groupId>
    99           <artifactId>org-netbeans-modules-classfile</artifactId>
   100           <version>RELEASE72</version>
   101           <type>jar</type>
   102         </dependency>
   103         <dependency>
   104           <groupId>org.netbeans.api</groupId>
   105           <artifactId>org-openide-util-lookup</artifactId>
   106           <version>RELEASE72</version>
   107           <scope>compile</scope>
   108           <type>jar</type>
   109         </dependency>
   110       </dependencies>
   111   </dependencyManagement>
   112   <properties>
   113       <license>COPYING</license>
   114   </properties>
   115 </project>