pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 23 Jan 2013 12:53:23 +0100
branchdew
changeset 543 1adce93fea0f
parent 468 a7ff47e054f3
parent 492 854286e49061
child 544 08ffdc3938e7
permissions -rw-r--r--
Bringing the most recent default branch (especially the @Property MVVC) to the dew code
     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>launcher/src/main/resources/org/apidesign/bck2brwsr/dew/**</exclude>
    78                        <exclude>vmtest/src/test/resources/**</exclude>
    79                        <exclude>javaquery/api/src/main/resources/org/apidesign/bck2brwsr/htmlpage/knockout*.js</exclude>
    80                   </excludes>
    81               </configuration>
    82           </plugin>
    83       </plugins>
    84   </build>
    85   <dependencyManagement>
    86       <dependencies>
    87         <dependency>
    88           <groupId>org.testng</groupId>
    89           <artifactId>testng</artifactId>
    90           <version>6.7</version>
    91           <scope>test</scope>
    92           <exclusions>
    93             <exclusion>
    94               <artifactId>junit</artifactId>
    95               <groupId>junit</groupId>
    96             </exclusion>
    97           </exclusions>
    98         </dependency>
    99         <dependency>
   100           <groupId>org.netbeans.api</groupId>
   101           <artifactId>org-netbeans-modules-classfile</artifactId>
   102           <version>RELEASE72</version>
   103           <type>jar</type>
   104         </dependency>
   105         <dependency>
   106           <groupId>org.netbeans.api</groupId>
   107           <artifactId>org-openide-util-lookup</artifactId>
   108           <version>RELEASE72</version>
   109           <scope>compile</scope>
   110           <type>jar</type>
   111         </dependency>
   112       </dependencies>
   113   </dependencyManagement>
   114   <properties>
   115       <license>COPYING</license>
   116   </properties>
   117 </project>