freemarkerdor/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 18 Feb 2010 06:53:35 +0100
changeset 230 a80ccd2a4517
parent 227 c8332e8197f7
child 231 a849ce530828
permissions -rw-r--r--
Let's inherit groupId
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
     3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     4   <modelVersion>4.0.0</modelVersion>
     5   <parent>
     6     <artifactId>all-quoridor</artifactId>
     7     <groupId>cz.xelfi.quoridor</groupId>
     8     <version>1.0</version>
     9   </parent>
    10   <artifactId>freemarkerdor</artifactId>
    11   <name>freemarkerdor</name>
    12   <version>1.57</version>
    13   <url>http://maven.apache.org</url>
    14   <dependencies>
    15     <dependency>
    16       <groupId>${project.groupId}</groupId>
    17       <artifactId>webidor</artifactId>
    18       <version>1.12</version>
    19       <scope>test</scope>
    20     </dependency>
    21     <dependency>
    22       <groupId>${project.groupId}</groupId>
    23       <artifactId>quoridor</artifactId>
    24       <version>1.0</version>
    25     </dependency>
    26     <dependency>
    27       <groupId>com.sun.jersey</groupId>
    28       <artifactId>jersey-server</artifactId>
    29       <version>1.1.0-ea</version>
    30     </dependency>
    31     <dependency>
    32       <groupId>org.netbeans.modules</groupId>
    33       <artifactId>org-netbeans-libs-freemarker</artifactId>
    34       <version>RELEASE67</version>
    35       <exclusions>
    36         <exclusion>
    37           <artifactId>script-api</artifactId>
    38           <groupId>org.netbeans.external</groupId>
    39         </exclusion>
    40         <exclusion>
    41           <artifactId>org-netbeans-libs-jsr223</artifactId>
    42           <groupId>org.netbeans.api</groupId>
    43         </exclusion>
    44         <exclusion>
    45           <artifactId>freemarker-2.3.8</artifactId>
    46           <groupId>org.netbeans.external</groupId>
    47         </exclusion>
    48       </exclusions>
    49     </dependency>
    50     <dependency>
    51       <groupId>com.sun.jersey</groupId>
    52       <artifactId>jersey-client</artifactId>
    53       <version>1.1.0-ea</version>
    54     </dependency>
    55     <dependency>
    56       <groupId>com.sun.jersey.test.framework</groupId>
    57       <artifactId>jersey-test-framework</artifactId>
    58       <version>1.1.0-ea</version>
    59       <scope>test</scope>
    60       <type>jar</type>
    61     </dependency>
    62     <dependency>
    63       <groupId>junit</groupId>
    64       <artifactId>junit</artifactId>
    65       <version>4.5</version>
    66       <scope>test</scope>
    67     </dependency>
    68     <dependency>
    69       <groupId>freemarker</groupId>
    70       <artifactId>freemarker</artifactId>
    71       <version>2.3.8</version>
    72     </dependency>
    73     <dependency>
    74       <groupId>${project.groupId}</groupId>
    75       <artifactId>statistics</artifactId>
    76       <version>1.7</version>
    77       <scope>test</scope>
    78     </dependency>
    79   </dependencies>
    80   <build>
    81     <plugins>
    82       <plugin>
    83         <groupId>org.apache.maven.plugins</groupId>
    84         <artifactId>maven-compiler-plugin</artifactId>
    85         <version>2.0.2</version>
    86         <configuration>
    87           <source>1.5</source>
    88           <target>1.5</target>
    89         </configuration>
    90       </plugin>
    91       <plugin>
    92         <artifactId>maven-assembly-plugin</artifactId>
    93         <version>2.2-beta-2</version>
    94         <executions>
    95           <execution>
    96             <id>create-executable-jar</id>
    97             <phase>package</phase>
    98             <goals>
    99               <goal>single</goal>
   100             </goals>
   101             <configuration>
   102               <descriptors>
   103                 <descriptor>all-zip.xml</descriptor>
   104               </descriptors>
   105               <finalName>freemarkerdor-${version}</finalName>
   106             </configuration>
   107           </execution>
   108         </executions>
   109       </plugin>
   110       <plugin>
   111         <groupId>org.apache.maven.plugins</groupId>
   112         <artifactId>maven-jar-plugin</artifactId>
   113         <configuration>
   114             <archive>
   115                 <manifest>
   116                     <addClasspath>true</addClasspath>
   117                     <classpathPrefix>lib/</classpathPrefix>
   118                     <mainClass>cz.xelfi.quoridor.freemarkerdor.UI</mainClass>
   119                 </manifest>
   120             </archive>
   121         </configuration>
   122       </plugin>
   123       </plugins>
   124   </build>
   125 </project>
   126 
   127 
   128 
   129 
   130 
   131 
   132 
   133 
   134