pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 21 Dec 2012 12:49:27 +0100
branchlauncher
changeset 362 a41b238056f4
parent 323 d41cfd77842d
child 421 0236ad6ab4d2
permissions -rw-r--r--
Using logger rather than System.err
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@106
    76
                  </excludes>
jaroslav@106
    77
              </configuration>
jaroslav@106
    78
          </plugin>
jaroslav@106
    79
      </plugins>
jaroslav@106
    80
  </build>
jaroslav@23
    81
  <dependencyManagement>
jaroslav@23
    82
      <dependencies>
jaroslav@23
    83
        <dependency>
jaroslav@23
    84
          <groupId>org.testng</groupId>
jaroslav@23
    85
          <artifactId>testng</artifactId>
jaroslav@23
    86
          <version>6.7</version>
jaroslav@23
    87
          <scope>test</scope>
jaroslav@23
    88
          <exclusions>
jaroslav@23
    89
            <exclusion>
jaroslav@23
    90
              <artifactId>junit</artifactId>
jaroslav@23
    91
              <groupId>junit</groupId>
jaroslav@23
    92
            </exclusion>
jaroslav@23
    93
          </exclusions>
jaroslav@23
    94
        </dependency>
jaroslav@23
    95
        <dependency>
jaroslav@23
    96
          <groupId>org.netbeans.api</groupId>
jaroslav@23
    97
          <artifactId>org-netbeans-modules-classfile</artifactId>
jaroslav@23
    98
          <version>RELEASE72</version>
jaroslav@23
    99
          <type>jar</type>
jaroslav@23
   100
        </dependency>
jaroslav@26
   101
        <dependency>
jaroslav@26
   102
          <groupId>org.netbeans.api</groupId>
jaroslav@26
   103
          <artifactId>org-openide-util-lookup</artifactId>
jaroslav@26
   104
          <version>RELEASE72</version>
jaroslav@26
   105
          <scope>compile</scope>
jaroslav@26
   106
          <type>jar</type>
jaroslav@26
   107
        </dependency>
jaroslav@23
   108
      </dependencies>
jaroslav@23
   109
  </dependencyManagement>
jaroslav@23
   110
  <properties>
jaroslav@23
   111
      <license>COPYING</license>
jaroslav@23
   112
  </properties>
jaroslav@346
   113
</project>