pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 16 Oct 2012 12:42:00 +0200
changeset 106 346633cd13d6
parent 92 bf4f95784c62
child 109 b19d12a9e6d5
permissions -rw-r--r--
Fixing license in all files
     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>1.0-SNAPSHOT</version>
     7   <packaging>pom</packaging>
     8   <name>Back 2 Browser</name>
     9   <modules>
    10       <module>vm</module>
    11     <module>htmlpage</module>
    12     <module>emul</module>
    13     <module>core</module>
    14   </modules>
    15   <licenses>
    16       <license>
    17           <name>GPL-2.0</name>
    18           <url>http://opensource.org/licenses/GPL-2.0</url>
    19           <distribution>repo</distribution>
    20       </license>
    21   </licenses>
    22   <organization>
    23       <name>API Design</name>
    24       <url>http://apidesign.org</url>
    25   </organization>
    26   <repositories>
    27       <repository>
    28           <id>netbeans</id>
    29           <name>NetBeans</name>
    30           <url>http://bits.netbeans.org/maven2/</url>
    31       </repository>
    32   </repositories>
    33   <pluginRepositories>
    34       <pluginRepository>
    35           <id>mc-release</id>
    36           <name>Local Maven repository of releases</name>
    37           <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
    38           <snapshots>
    39               <enabled>false</enabled>
    40           </snapshots>
    41           <releases>
    42               <enabled>true</enabled>
    43           </releases>
    44       </pluginRepository>
    45   </pluginRepositories>
    46   <build>
    47       <plugins>
    48          <plugin>
    49               <inherited>false</inherited>
    50               <groupId>com.mycila.maven-license-plugin</groupId>
    51               <artifactId>maven-license-plugin</artifactId>
    52               <version>1.9.0</version>
    53               <executions>
    54                   <execution>
    55                       <id>blah</id>
    56                       <goals>
    57                           <goal>check</goal>
    58                       </goals>
    59                   </execution>
    60               </executions>
    61               <configuration>
    62                   <aggregate>true</aggregate>
    63                   <basedir>${basedir}</basedir>
    64                   <header>COPYING</header>
    65                   <strictCheck>true</strictCheck>
    66                   <excludes>
    67                        <exclude>emul/**</exclude>
    68                        <exclude>*</exclude>
    69                   </excludes>
    70               </configuration>
    71           </plugin>
    72       </plugins>
    73   </build>
    74   <dependencyManagement>
    75       <dependencies>
    76         <dependency>
    77           <groupId>org.testng</groupId>
    78           <artifactId>testng</artifactId>
    79           <version>6.7</version>
    80           <scope>test</scope>
    81           <exclusions>
    82             <exclusion>
    83               <artifactId>junit</artifactId>
    84               <groupId>junit</groupId>
    85             </exclusion>
    86           </exclusions>
    87         </dependency>
    88         <dependency>
    89           <groupId>org.netbeans.api</groupId>
    90           <artifactId>org-netbeans-modules-classfile</artifactId>
    91           <version>RELEASE72</version>
    92           <type>jar</type>
    93         </dependency>
    94         <dependency>
    95           <groupId>org.netbeans.api</groupId>
    96           <artifactId>org-openide-util-lookup</artifactId>
    97           <version>RELEASE72</version>
    98           <scope>compile</scope>
    99           <type>jar</type>
   100         </dependency>
   101       </dependencies>
   102   </dependencyManagement>
   103   <properties>
   104       <license>COPYING</license>
   105   </properties>
   106 </project>