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