pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 18 Dec 2012 12:43:18 +0100
branchlauncher
changeset 348 4e9d576780ca
parent 323 d41cfd77842d
child 421 0236ad6ab4d2
permissions -rw-r--r--
Turning the launcher into an API
     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                   </excludes>
    77               </configuration>
    78           </plugin>
    79       </plugins>
    80   </build>
    81   <dependencyManagement>
    82       <dependencies>
    83         <dependency>
    84           <groupId>org.testng</groupId>
    85           <artifactId>testng</artifactId>
    86           <version>6.7</version>
    87           <scope>test</scope>
    88           <exclusions>
    89             <exclusion>
    90               <artifactId>junit</artifactId>
    91               <groupId>junit</groupId>
    92             </exclusion>
    93           </exclusions>
    94         </dependency>
    95         <dependency>
    96           <groupId>org.netbeans.api</groupId>
    97           <artifactId>org-netbeans-modules-classfile</artifactId>
    98           <version>RELEASE72</version>
    99           <type>jar</type>
   100         </dependency>
   101         <dependency>
   102           <groupId>org.netbeans.api</groupId>
   103           <artifactId>org-openide-util-lookup</artifactId>
   104           <version>RELEASE72</version>
   105           <scope>compile</scope>
   106           <type>jar</type>
   107         </dependency>
   108       </dependencies>
   109   </dependencyManagement>
   110   <properties>
   111       <license>COPYING</license>
   112   </properties>
   113 </project>