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