desktop/pom.xml
branchdesktop
changeset 257 03762a20a808
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/desktop/pom.xml	Sat Sep 11 21:01:31 2010 +0200
     1.3 @@ -0,0 +1,79 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<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/maven-v4_0_0.xsd">
     1.6 +    <modelVersion>4.0.0</modelVersion>
     1.7 +    <parent>
     1.8 +        <artifactId>all-quoridor</artifactId>
     1.9 +        <groupId>cz.xelfi.quoridor</groupId>
    1.10 +        <version>1.0</version>
    1.11 +    </parent>
    1.12 +    <groupId>cz.xelfi.quoridor</groupId>
    1.13 +    <artifactId>desktop</artifactId>
    1.14 +    <packaging>pom</packaging>
    1.15 +    <version>1.0-SNAPSHOT</version>
    1.16 +    <name>Quoridor Desktop Master</name>
    1.17 +    <repositories>
    1.18 +        <!-- this is a remote repository hosting the netbeans api artifacts.
    1.19 +         the versions of the artifacts are netbeans IDE release based, eg. RELEASE65
    1.20 +         You might want to use your own repository. To create one, use the nbm:populate-repository goal.
    1.21 +          -->
    1.22 +        <repository>
    1.23 +            <id>netbeans</id>
    1.24 +            <name>repository hosting netbeans.org api artifacts</name>
    1.25 +            <url>http://bits.netbeans.org/maven2</url>
    1.26 +        </repository>
    1.27 +        <repository>
    1.28 +            <id>netbeans.snapshot</id>
    1.29 +            <name>repository hosting netbeans.org api snapshot artifacts</name>
    1.30 +            <url>http://bits.netbeans.org/netbeans/trunk/maven-snapshot</url>
    1.31 +            <releases>
    1.32 +                <enabled>false</enabled>
    1.33 +            </releases>
    1.34 +        </repository>
    1.35 +    </repositories>
    1.36 +
    1.37 +    <dependencies>
    1.38 +        <dependency>
    1.39 +            <groupId>junit</groupId>
    1.40 +            <artifactId>junit</artifactId>
    1.41 +            <version>4.7</version>
    1.42 +            <scope>test</scope>
    1.43 +        </dependency>
    1.44 +    </dependencies>
    1.45 +    <build>
    1.46 +        <pluginManagement>
    1.47 +            <plugins>
    1.48 +                <plugin>
    1.49 +                    <groupId>org.codehaus.mojo</groupId>
    1.50 +                    <artifactId>nbm-maven-plugin</artifactId>
    1.51 +                    <version>3.2</version>
    1.52 +                    <extensions>true</extensions>
    1.53 +                    <configuration>
    1.54 +                        <brandingToken>${brandingToken}</brandingToken>
    1.55 +                        <cluster>foobar</cluster>
    1.56 +                        <useOSGiDependencies>true</useOSGiDependencies>
    1.57 +                    </configuration>
    1.58 +                </plugin>
    1.59 +                
    1.60 +                <plugin>
    1.61 +                    <!-- netbeans modules in 6.9+ are 1.6 compatible -->
    1.62 +                    <groupId>org.apache.maven.plugins</groupId>
    1.63 +                    <artifactId>maven-compiler-plugin</artifactId>
    1.64 +                    <version>2.2</version>
    1.65 +                    <configuration>
    1.66 +                        <source>1.6</source>
    1.67 +                        <target>1.6</target>
    1.68 +                    </configuration>
    1.69 +                </plugin>
    1.70 +            </plugins>
    1.71 +        </pluginManagement>
    1.72 +    </build>
    1.73 +    <modules>
    1.74 +        <module>branding</module>
    1.75 +        <module>application</module>
    1.76 +    <module>desktop-sample</module>
    1.77 +  </modules>
    1.78 +    <properties>
    1.79 +        <netbeans.version>RELEASE691</netbeans.version>
    1.80 +        <brandingToken>qdor</brandingToken>
    1.81 +    </properties>
    1.82 +</project>
    1.83 \ No newline at end of file