desktop/branding/pom.xml
branchdesktop
changeset 257 03762a20a808
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/desktop/branding/pom.xml	Sat Sep 11 21:01:31 2010 +0200
     1.3 @@ -0,0 +1,47 @@
     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/maven-v4_0_0.xsd">
     1.6 +  <parent>
     1.7 +      <groupId>cz.xelfi.quoridor</groupId>
     1.8 +      <artifactId>desktop</artifactId>
     1.9 +      <version>1.0-SNAPSHOT</version>
    1.10 +  </parent>
    1.11 +  <modelVersion>4.0.0</modelVersion>
    1.12 +  <artifactId>desktop.branding</artifactId>
    1.13 +  <packaging>nbm</packaging>
    1.14 +  <version>1.0-SNAPSHOT</version>
    1.15 +  <dependencies>
    1.16 +    <dependency>
    1.17 +      <groupId>org.netbeans.api</groupId>
    1.18 +      <artifactId>org-openide-util</artifactId>
    1.19 +      <version>${netbeans.version}</version>
    1.20 +    </dependency>
    1.21 +  </dependencies>
    1.22 +  <build>
    1.23 +      <plugins>
    1.24 +            <plugin>
    1.25 +                <groupId>org.codehaus.mojo</groupId>
    1.26 +                <artifactId>nbm-maven-plugin</artifactId>
    1.27 +                <executions>
    1.28 +                    <execution>
    1.29 +                        <id>branding</id>
    1.30 +                        <phase>process-resources</phase>
    1.31 +                        <goals>
    1.32 +                            <goal>branding</goal>
    1.33 +                        </goals>
    1.34 +                    </execution>
    1.35 +                </executions>
    1.36 +            </plugin>
    1.37 +            <plugin>
    1.38 +                <groupId>org.apache.maven.plugins</groupId>
    1.39 +                <artifactId>maven-jar-plugin</artifactId>
    1.40 +                <version>2.2</version>
    1.41 +                <configuration>
    1.42 +                    <!-- to have the jar plugin pickup the nbm generated manifest -->
    1.43 +                    <useDefaultManifestFile>true</useDefaultManifestFile>
    1.44 +                </configuration>
    1.45 +            </plugin>
    1.46 +      </plugins>
    1.47 +  </build>
    1.48 +    <name>Quoridor Desktop Branding</name>
    1.49 +    <description>Provides localized texts, icons and definitions</description>
    1.50 +</project>