desktop/application/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/application/pom.xml	Sat Sep 11 21:01:31 2010 +0200
     1.3 @@ -0,0 +1,82 @@
     1.4 +
     1.5 +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     1.6 +  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     1.7 +    <parent>
     1.8 +        <groupId>cz.xelfi.quoridor</groupId>
     1.9 +        <artifactId>desktop</artifactId>
    1.10 +        <version>1.0-SNAPSHOT</version>
    1.11 +    </parent>
    1.12 +    <modelVersion>4.0.0</modelVersion>
    1.13 +    <packaging>nbm-application</packaging>
    1.14 +    <version>1.0-SNAPSHOT</version>
    1.15 +    <name>Quoridor Desktop</name>
    1.16 +    <dependencies>
    1.17 +        <dependency>
    1.18 +            <groupId>org.netbeans.cluster</groupId>
    1.19 +            <artifactId>platform</artifactId>
    1.20 +            <version>${netbeans.version}</version>
    1.21 +            <type>pom</type>
    1.22 +        </dependency>
    1.23 +      
    1.24 +        <dependency>
    1.25 +            <groupId>cz.xelfi.quoridor</groupId>
    1.26 +            <artifactId>desktop.branding</artifactId>
    1.27 +            <version>1.0-SNAPSHOT</version>
    1.28 +        </dependency>
    1.29 +        <dependency>
    1.30 +            <groupId>cz.xelfi.quoridor</groupId>
    1.31 +            <artifactId>desktop-sample</artifactId>
    1.32 +            <version>1.0-SNAPSHOT</version>
    1.33 +        </dependency>
    1.34 +        <dependency>
    1.35 +            <groupId>${project.groupId}</groupId>
    1.36 +            <artifactId>visidor</artifactId>
    1.37 +            <version>${visidorVersion}</version>
    1.38 +        </dependency>
    1.39 +    </dependencies>
    1.40 +    <build>
    1.41 +        <plugins>
    1.42 +            <plugin>
    1.43 +                <groupId>org.codehaus.mojo</groupId>
    1.44 +                <artifactId>nbm-maven-plugin</artifactId>
    1.45 +            </plugin>
    1.46 +        </plugins>
    1.47 +    </build>
    1.48 +
    1.49 +    <profiles>
    1.50 +        <profile>
    1.51 +            <id>deployment</id>
    1.52 +            <build>
    1.53 +                <plugins>
    1.54 +                    <plugin>
    1.55 +                        <groupId>org.codehaus.mojo</groupId>
    1.56 +                        <artifactId>nbm-maven-plugin</artifactId>
    1.57 +                        <executions>
    1.58 +                            <execution>
    1.59 +                                <id>updatesite</id>
    1.60 +                                <phase>package</phase>
    1.61 +                                <goals>
    1.62 +                                    <goal>autoupdate</goal>
    1.63 +                                </goals>
    1.64 +                                <configuration>
    1.65 +                            <!--distBase>central::default::http://repo1.maven.org/maven2</distBase-->
    1.66 +                                </configuration>
    1.67 +                            </execution>
    1.68 +                            <execution>
    1.69 +                                <id>webstart</id>
    1.70 +                                <phase>package</phase>
    1.71 +                                <goals>
    1.72 +                                    <goal>webstart-app</goal>
    1.73 +                                </goals>
    1.74 +                                <configuration>
    1.75 +                                    <codebase>${project.build.directory}/webstart/${brandingToken}</codebase>
    1.76 +                                </configuration>
    1.77 +                            </execution>
    1.78 +                        </executions>
    1.79 +                    </plugin>
    1.80 +                </plugins>
    1.81 +            </build>
    1.82 +        </profile>
    1.83 +    </profiles>
    1.84 +    <artifactId>qdor</artifactId>
    1.85 +</project>