desktop/branding/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 11 Sep 2010 21:01:31 +0200
branchdesktop
changeset 257 03762a20a808
permissions -rw-r--r--
First version with broken dependency in desktop/desktop-sample
     1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     3   <parent>
     4       <groupId>cz.xelfi.quoridor</groupId>
     5       <artifactId>desktop</artifactId>
     6       <version>1.0-SNAPSHOT</version>
     7   </parent>
     8   <modelVersion>4.0.0</modelVersion>
     9   <artifactId>desktop.branding</artifactId>
    10   <packaging>nbm</packaging>
    11   <version>1.0-SNAPSHOT</version>
    12   <dependencies>
    13     <dependency>
    14       <groupId>org.netbeans.api</groupId>
    15       <artifactId>org-openide-util</artifactId>
    16       <version>${netbeans.version}</version>
    17     </dependency>
    18   </dependencies>
    19   <build>
    20       <plugins>
    21             <plugin>
    22                 <groupId>org.codehaus.mojo</groupId>
    23                 <artifactId>nbm-maven-plugin</artifactId>
    24                 <executions>
    25                     <execution>
    26                         <id>branding</id>
    27                         <phase>process-resources</phase>
    28                         <goals>
    29                             <goal>branding</goal>
    30                         </goals>
    31                     </execution>
    32                 </executions>
    33             </plugin>
    34             <plugin>
    35                 <groupId>org.apache.maven.plugins</groupId>
    36                 <artifactId>maven-jar-plugin</artifactId>
    37                 <version>2.2</version>
    38                 <configuration>
    39                     <!-- to have the jar plugin pickup the nbm generated manifest -->
    40                     <useDefaultManifestFile>true</useDefaultManifestFile>
    41                 </configuration>
    42             </plugin>
    43       </plugins>
    44   </build>
    45     <name>Quoridor Desktop Branding</name>
    46     <description>Provides localized texts, icons and definitions</description>
    47 </project>