desktop/desktop-sample/pom.xml
branchdesktop
changeset 257 03762a20a808
child 260 8ebffb5aa10e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/desktop/desktop-sample/pom.xml	Sat Sep 11 21:01:31 2010 +0200
     1.3 @@ -0,0 +1,87 @@
     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>desktop</artifactId> 
     1.9 +        <groupId>cz.xelfi.quoridor</groupId> 
    1.10 +        <version>1.0-SNAPSHOT</version> 
    1.11 +    </parent> 
    1.12 +    <artifactId>desktop-sample</artifactId> 
    1.13 +    <packaging>nbm</packaging> 
    1.14 +    <version>1.0-SNAPSHOT</version> 
    1.15 +    <name>desktop-sample NetBeans Module</name> 
    1.16 + 
    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 +            <url>http://download.java.net/maven/2/</url> 
    1.24 +            <id>restapi</id> 
    1.25 +            <layout>default</layout> 
    1.26 +            <name>Repository for library Library[restapi]</name> 
    1.27 +        </repository> 
    1.28 +    </repositories> 
    1.29 + 
    1.30 +    <dependencies> 
    1.31 +        <dependency> 
    1.32 +            <groupId>org.netbeans.api</groupId> 
    1.33 +            <artifactId>org-openide-util</artifactId> 
    1.34 +            <version>RELEASE691</version> 
    1.35 +        </dependency> 
    1.36 +        <dependency> 
    1.37 +            <groupId>org.netbeans.api</groupId> 
    1.38 +            <artifactId>org-openide-awt</artifactId> 
    1.39 +            <version>RELEASE691</version> 
    1.40 +        </dependency> 
    1.41 +        <dependency> 
    1.42 +            <groupId>org.netbeans.api</groupId> 
    1.43 +            <artifactId>org-openide-windows</artifactId> 
    1.44 +            <version>RELEASE691</version> 
    1.45 +        </dependency> 
    1.46 +        <dependency> 
    1.47 +            <groupId>org.netbeans.api</groupId> 
    1.48 +            <artifactId>org-openide-util-lookup</artifactId> 
    1.49 +            <version>RELEASE691</version> 
    1.50 +        </dependency> 
    1.51 +        <dependency> 
    1.52 +            <groupId>org.netbeans.api</groupId> 
    1.53 +            <artifactId>org-netbeans-modules-settings</artifactId> 
    1.54 +            <version>RELEASE691</version> 
    1.55 +        </dependency> 
    1.56 +        <!-- 
    1.57 +        <dependency> 
    1.58 +            <groupId>${project.groupId}</groupId> 
    1.59 +            <artifactId>quoridor</artifactId> 
    1.60 +            <version>${quoridorVersion}</version> 
    1.61 +        </dependency>--> 
    1.62 +        <dependency> 
    1.63 +            <groupId>${project.groupId}</groupId> 
    1.64 +            <artifactId>visidor</artifactId> 
    1.65 +            <version>${visidorVersion}</version> 
    1.66 +        </dependency> 
    1.67 +    </dependencies> 
    1.68 +    <build> 
    1.69 +        <plugins> 
    1.70 +            <plugin> 
    1.71 +                <groupId>org.codehaus.mojo</groupId> 
    1.72 +                <artifactId>nbm-maven-plugin</artifactId> 
    1.73 +                <version>3.2</version> 
    1.74 +                <extensions>true</extensions> 
    1.75 +                <configuration> 
    1.76 +                    <useOSGiDependencies>true</useOSGiDependencies> 
    1.77 +                </configuration> 
    1.78 +            </plugin> 
    1.79 +            <plugin> 
    1.80 +                <groupId>org.apache.maven.plugins</groupId> 
    1.81 +                <artifactId>maven-jar-plugin</artifactId> 
    1.82 +                <version>2.2</version> 
    1.83 +                <configuration> 
    1.84 +<!-- to have the jar plugin pickup the nbm generated manifest --> 
    1.85 +                    <useDefaultManifestFile>true</useDefaultManifestFile> 
    1.86 +                </configuration> 
    1.87 +            </plugin> 
    1.88 +        </plugins> 
    1.89 +    </build> 
    1.90 +</project>