freemarkerdor/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 15 Apr 2011 21:05:46 +0200
changeset 281 fdf4436aad29
parent 258 935118a5831a
child 288 61a4abd3f362
permissions -rw-r--r--
Most recent stable version of jersey is 1.6
     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     <dependency>
    90       <groupId>org.openid4java</groupId>
    91       <artifactId>openid4java-server</artifactId>
    92       <version>0.9.5</version>
    93       <exclusions>
    94         <exclusion>
    95           <artifactId>xercesImpl</artifactId>
    96           <groupId>xerces</groupId>
    97         </exclusion>
    98       </exclusions>
    99     </dependency>
   100   </dependencies>
   101   <build>
   102     <plugins>
   103       <plugin>
   104         <groupId>org.apache.maven.plugins</groupId>
   105         <artifactId>maven-compiler-plugin</artifactId>
   106         <version>2.0.2</version>
   107         <configuration>
   108           <source>1.5</source>
   109           <target>1.5</target>
   110         </configuration>
   111       </plugin>
   112       <plugin>
   113         <artifactId>maven-assembly-plugin</artifactId>
   114         <version>2.2-beta-2</version>
   115         <executions>
   116           <execution>
   117             <id>create-executable-jar</id>
   118             <phase>package</phase>
   119             <goals>
   120               <goal>single</goal>
   121             </goals>
   122             <configuration>
   123               <descriptors>
   124                 <descriptor>all-zip.xml</descriptor>
   125               </descriptors>
   126               <finalName>freemarkerdor-${version}</finalName>
   127             </configuration>
   128           </execution>
   129         </executions>
   130       </plugin>
   131       <plugin>
   132         <groupId>org.apache.maven.plugins</groupId>
   133         <artifactId>maven-jar-plugin</artifactId>
   134         <configuration>
   135             <archive>
   136                 <manifest>
   137                     <addClasspath>true</addClasspath>
   138                     <classpathPrefix>lib/</classpathPrefix>
   139                     <mainClass>cz.xelfi.quoridor.freemarkerdor.UI</mainClass>
   140                 </manifest>
   141             </archive>
   142         </configuration>
   143       </plugin>
   144       </plugins>
   145   </build>
   146 </project>
   147 
   148 
   149 
   150 
   151 
   152 
   153 
   154 
   155