freemarkerdor/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 12 Sep 2010 00:06:44 +0200
changeset 258 935118a5831a
parent 233 ecddc9f373bb
child 278 3a472605338f
permissions -rw-r--r--
Upgrading to jersey 1.3
     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>${freemarkerVersion}</version>
    13   <url>http://maven.apache.org</url>
    14   <dependencies>
    15     <dependency>
    16         <groupId>javax.mail</groupId>
    17         <artifactId>mail</artifactId>
    18         <version>1.4.1</version>
    19     </dependency>
    20     <dependency>
    21       <groupId>${project.groupId}</groupId>
    22       <artifactId>webidor</artifactId>
    23       <version>${webidorVersion}</version>
    24       <scope>test</scope>
    25     </dependency>
    26     <dependency>
    27       <groupId>${project.groupId}</groupId>
    28       <artifactId>quoridor</artifactId>
    29       <version>${quoridorVersion}</version>
    30     </dependency>
    31     <dependency>
    32       <groupId>com.sun.jersey</groupId>
    33       <artifactId>jersey-server</artifactId>
    34       <version>${jerseyVersion}</version>
    35     </dependency>
    36     <dependency>
    37       <groupId>org.netbeans.modules</groupId>
    38       <artifactId>org-netbeans-libs-freemarker</artifactId>
    39       <version>RELEASE67</version>
    40       <exclusions>
    41         <exclusion>
    42           <artifactId>script-api</artifactId>
    43           <groupId>org.netbeans.external</groupId>
    44         </exclusion>
    45         <exclusion>
    46           <artifactId>org-netbeans-libs-jsr223</artifactId>
    47           <groupId>org.netbeans.api</groupId>
    48         </exclusion>
    49         <exclusion>
    50           <artifactId>freemarker-2.3.8</artifactId>
    51           <groupId>org.netbeans.external</groupId>
    52         </exclusion>
    53       </exclusions>
    54     </dependency>
    55     <dependency>
    56       <groupId>com.sun.jersey</groupId>
    57       <artifactId>jersey-client</artifactId>
    58       <version>${jerseyVersion}</version>
    59     </dependency>
    60     <dependency>
    61       <groupId>com.sun.jersey.jersey-test-framework</groupId>
    62       <artifactId>jersey-test-framework-http</artifactId>
    63       <version>${jerseyVersion}</version>
    64       <scope>test</scope>
    65     </dependency>
    66     <dependency>
    67       <groupId>junit</groupId>
    68       <artifactId>junit</artifactId>
    69       <version>4.5</version>
    70       <scope>test</scope>
    71     </dependency>
    72     <dependency>
    73         <groupId>org.netbeans.api</groupId>
    74         <artifactId>org-netbeans-modules-nbjunit</artifactId>
    75         <version>RELEASE65</version>
    76         <scope>test</scope>
    77     </dependency>
    78     <dependency>
    79       <groupId>freemarker</groupId>
    80       <artifactId>freemarker</artifactId>
    81       <version>2.3.8</version>
    82     </dependency>
    83     <dependency>
    84       <groupId>${project.groupId}</groupId>
    85       <artifactId>statistics</artifactId>
    86       <version>${statisticsVersion}</version>
    87       <scope>test</scope>
    88     </dependency>
    89   </dependencies>
    90   <build>
    91     <plugins>
    92       <plugin>
    93         <groupId>org.apache.maven.plugins</groupId>
    94         <artifactId>maven-compiler-plugin</artifactId>
    95         <version>2.0.2</version>
    96         <configuration>
    97           <source>1.5</source>
    98           <target>1.5</target>
    99         </configuration>
   100       </plugin>
   101       <plugin>
   102         <artifactId>maven-assembly-plugin</artifactId>
   103         <version>2.2-beta-2</version>
   104         <executions>
   105           <execution>
   106             <id>create-executable-jar</id>
   107             <phase>package</phase>
   108             <goals>
   109               <goal>single</goal>
   110             </goals>
   111             <configuration>
   112               <descriptors>
   113                 <descriptor>all-zip.xml</descriptor>
   114               </descriptors>
   115               <finalName>freemarkerdor-${version}</finalName>
   116             </configuration>
   117           </execution>
   118         </executions>
   119       </plugin>
   120       <plugin>
   121         <groupId>org.apache.maven.plugins</groupId>
   122         <artifactId>maven-jar-plugin</artifactId>
   123         <configuration>
   124             <archive>
   125                 <manifest>
   126                     <addClasspath>true</addClasspath>
   127                     <classpathPrefix>lib/</classpathPrefix>
   128                     <mainClass>cz.xelfi.quoridor.freemarkerdor.UI</mainClass>
   129                 </manifest>
   130             </archive>
   131         </configuration>
   132       </plugin>
   133       </plugins>
   134   </build>
   135 </project>
   136 
   137 
   138 
   139 
   140 
   141 
   142 
   143 
   144