pom.xml
changeset 21 d8807b6a636a
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/pom.xml	Mon Sep 24 09:35:00 2012 +0200
     1.3 @@ -0,0 +1,86 @@
     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 +
     1.8 +  <groupId>org.apidesign</groupId>
     1.9 +  <artifactId>java4browser</artifactId>
    1.10 +  <version>0.1-SNAPSHOT</version>
    1.11 +  <packaging>jar</packaging>
    1.12 +
    1.13 +  <name>java4browser</name>
    1.14 +  <url>http://java4browser.apidesign.org</url>
    1.15 +
    1.16 +  <properties>
    1.17 +    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.18 +    <author.name>Jaroslav Tulach</author.name>
    1.19 +    <author.email>jaroslav.tulach@apidesign.org</author.email>
    1.20 +  </properties>
    1.21 +  
    1.22 +  <repositories>
    1.23 +      <repository>
    1.24 +          <id>netbeans</id>
    1.25 +          <name>NetBeans</name>
    1.26 +          <url>http://bits.netbeans.org/maven2/</url>
    1.27 +      </repository>
    1.28 +  </repositories>
    1.29 +  <pluginRepositories>
    1.30 +    <pluginRepository>
    1.31 +        <id>mc-release</id>
    1.32 +        <name>Local Maven repository of releases</name>
    1.33 +        <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
    1.34 +        <snapshots>
    1.35 +            <enabled>false</enabled>
    1.36 +        </snapshots>
    1.37 +        <releases>
    1.38 +            <enabled>true</enabled>
    1.39 +        </releases>
    1.40 +    </pluginRepository>
    1.41 +  </pluginRepositories>
    1.42 +  <scm>
    1.43 +      <connection>scm:hg:http://source.apidesign.org/hg/quoridor</connection>
    1.44 +      <url>http://source.apidesign.org/hg/quoridor</url>
    1.45 +  </scm>
    1.46 +  <licenses>
    1.47 +    <license>
    1.48 +        <name>GPL-2.0</name>
    1.49 +        <url>http://opensource.org/licenses/GPL-2.0</url>
    1.50 +        <distribution>repo</distribution>
    1.51 +    </license>
    1.52 +  </licenses>
    1.53 +  <organization>
    1.54 +      <name>API Design</name>
    1.55 +      <url>http://apidesign.org</url>
    1.56 +  </organization>
    1.57 +    <build>
    1.58 +        <plugins>
    1.59 +            <plugin>
    1.60 +                <groupId>com.mycila.maven-license-plugin</groupId>
    1.61 +                <artifactId>maven-license-plugin</artifactId>
    1.62 +                <version>1.9.0</version>
    1.63 +                <configuration>
    1.64 +                    <header>src/header.txt</header>
    1.65 +                </configuration>
    1.66 +            </plugin>
    1.67 +        </plugins>
    1.68 +    </build>
    1.69 +  <dependencies>
    1.70 +    <dependency>
    1.71 +      <groupId>org.testng</groupId>
    1.72 +      <artifactId>testng</artifactId>
    1.73 +      <version>6.7</version>
    1.74 +      <scope>test</scope>
    1.75 +      <exclusions>
    1.76 +        <exclusion>
    1.77 +          <artifactId>junit</artifactId>
    1.78 +          <groupId>junit</groupId>
    1.79 +        </exclusion>
    1.80 +      </exclusions>
    1.81 +    </dependency>
    1.82 +    <dependency>
    1.83 +      <groupId>org.netbeans.api</groupId>
    1.84 +      <artifactId>org-netbeans-modules-classfile</artifactId>
    1.85 +      <version>RELEASE72</version>
    1.86 +      <type>jar</type>
    1.87 +    </dependency>
    1.88 +  </dependencies>
    1.89 +</project>