pom.xml
changeset 24 a82e89aae050
child 25 e214f04abb98
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/pom.xml	Mon Sep 24 11:22:50 2012 +0200
     1.3 @@ -0,0 +1,68 @@
     1.4 +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     1.5 +  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     1.6 +  <modelVersion>4.0.0</modelVersion>
     1.7 +  <groupId>org.apidesign</groupId>
     1.8 +  <artifactId>bck2brwsr</artifactId>
     1.9 +  <version>1.0-SNAPSHOT</version>
    1.10 +  <packaging>pom</packaging>
    1.11 +  <name>Back 2 Browser</name>
    1.12 +  <modules>
    1.13 +      <module>vm</module>
    1.14 +  </modules>
    1.15 +  <licenses>
    1.16 +      <license>
    1.17 +          <name>GPL-2.0</name>
    1.18 +          <url>http://opensource.org/licenses/GPL-2.0</url>
    1.19 +          <distribution>repo</distribution>
    1.20 +      </license>
    1.21 +  </licenses>
    1.22 +  <organization>
    1.23 +      <name>API Design</name>
    1.24 +      <url>http://apidesign.org</url>
    1.25 +  </organization>
    1.26 +  <repositories>
    1.27 +      <repository>
    1.28 +          <id>netbeans</id>
    1.29 +          <name>NetBeans</name>
    1.30 +          <url>http://bits.netbeans.org/maven2/</url>
    1.31 +      </repository>
    1.32 +  </repositories>
    1.33 +  <pluginRepositories>
    1.34 +      <pluginRepository>
    1.35 +          <id>mc-release</id>
    1.36 +          <name>Local Maven repository of releases</name>
    1.37 +          <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
    1.38 +          <snapshots>
    1.39 +              <enabled>false</enabled>
    1.40 +          </snapshots>
    1.41 +          <releases>
    1.42 +              <enabled>true</enabled>
    1.43 +          </releases>
    1.44 +      </pluginRepository>
    1.45 +  </pluginRepositories>
    1.46 +  <dependencyManagement>
    1.47 +      <dependencies>
    1.48 +        <dependency>
    1.49 +          <groupId>org.testng</groupId>
    1.50 +          <artifactId>testng</artifactId>
    1.51 +          <version>6.7</version>
    1.52 +          <scope>test</scope>
    1.53 +          <exclusions>
    1.54 +            <exclusion>
    1.55 +              <artifactId>junit</artifactId>
    1.56 +              <groupId>junit</groupId>
    1.57 +            </exclusion>
    1.58 +          </exclusions>
    1.59 +        </dependency>
    1.60 +        <dependency>
    1.61 +          <groupId>org.netbeans.api</groupId>
    1.62 +          <artifactId>org-netbeans-modules-classfile</artifactId>
    1.63 +          <version>RELEASE72</version>
    1.64 +          <type>jar</type>
    1.65 +        </dependency>
    1.66 +      </dependencies>
    1.67 +  </dependencyManagement>
    1.68 +  <properties>
    1.69 +      <license>COPYING</license>
    1.70 +  </properties>
    1.71 +</project>