freemarkerdor/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 07 Jan 2010 23:08:06 +0100
branchstatistics-and-elo
changeset 181 e3fb438103e0
parent 176 700003474749
child 183 c5b02e84ea84
permissions -rw-r--r--
Test to verify behaviour of getCode and valueOf
     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>org.apidesign</groupId>
     8     <version>1.0</version>
     9   </parent>
    10   <groupId>org.apidesign</groupId>
    11   <artifactId>freemarkerdor</artifactId>
    12   <name>freemarkerdor</name>
    13   <version>1.48</version>
    14   <url>http://maven.apache.org</url>
    15   <dependencies>
    16     <dependency>
    17       <groupId>${project.groupId}</groupId>
    18       <artifactId>webidor</artifactId>
    19       <version>1.8</version>
    20       <scope>test</scope>
    21     </dependency>
    22     <dependency>
    23       <groupId>${project.groupId}</groupId>
    24       <artifactId>quoridor</artifactId>
    25       <version>1.0</version>
    26     </dependency>
    27     <dependency>
    28       <groupId>com.sun.jersey</groupId>
    29       <artifactId>jersey-server</artifactId>
    30       <version>1.1.0-ea</version>
    31     </dependency>
    32     <dependency>
    33       <groupId>org.netbeans.modules</groupId>
    34       <artifactId>org-netbeans-libs-freemarker</artifactId>
    35       <version>RELEASE67</version>
    36       <exclusions>
    37         <exclusion>
    38           <artifactId>script-api</artifactId>
    39           <groupId>org.netbeans.external</groupId>
    40         </exclusion>
    41         <exclusion>
    42           <artifactId>org-netbeans-libs-jsr223</artifactId>
    43           <groupId>org.netbeans.api</groupId>
    44         </exclusion>
    45         <exclusion>
    46           <artifactId>freemarker-2.3.8</artifactId>
    47           <groupId>org.netbeans.external</groupId>
    48         </exclusion>
    49       </exclusions>
    50     </dependency>
    51     <dependency>
    52       <groupId>com.sun.jersey</groupId>
    53       <artifactId>jersey-client</artifactId>
    54       <version>1.1.0-ea</version>
    55     </dependency>
    56     <dependency>
    57       <groupId>com.sun.jersey.test.framework</groupId>
    58       <artifactId>jersey-test-framework</artifactId>
    59       <version>1.1.0-ea</version>
    60       <scope>test</scope>
    61       <type>jar</type>
    62     </dependency>
    63     <dependency>
    64       <groupId>junit</groupId>
    65       <artifactId>junit</artifactId>
    66       <version>4.5</version>
    67       <scope>test</scope>
    68     </dependency>
    69     <dependency>
    70       <groupId>freemarker</groupId>
    71       <artifactId>freemarker</artifactId>
    72       <version>2.3.8</version>
    73     </dependency>
    74     <dependency>
    75       <groupId>${project.groupId}</groupId>
    76       <artifactId>statistics</artifactId>
    77       <version>1.0</version>
    78       <scope>test</scope>
    79     </dependency>
    80   </dependencies>
    81   <build>
    82     <plugins>
    83       <plugin>
    84         <groupId>org.apache.maven.plugins</groupId>
    85         <artifactId>maven-compiler-plugin</artifactId>
    86         <version>2.0.2</version>
    87         <configuration>
    88           <source>1.5</source>
    89           <target>1.5</target>
    90         </configuration>
    91       </plugin>
    92       <plugin>
    93         <artifactId>maven-assembly-plugin</artifactId>
    94         <version>2.2-beta-2</version>
    95         <executions>
    96           <execution>
    97             <id>create-executable-jar</id>
    98             <phase>package</phase>
    99             <goals>
   100               <goal>single</goal>
   101             </goals>
   102             <configuration>
   103               <descriptors>
   104                 <descriptor>all-zip.xml</descriptor>
   105               </descriptors>
   106               <finalName>freemarkerdor-${version}</finalName>
   107             </configuration>
   108           </execution>
   109         </executions>
   110       </plugin>
   111       <plugin>
   112         <groupId>org.apache.maven.plugins</groupId>
   113         <artifactId>maven-jar-plugin</artifactId>
   114         <configuration>
   115             <archive>
   116                 <manifest>
   117                     <addClasspath>true</addClasspath>
   118                     <classpathPrefix>lib/</classpathPrefix>
   119                     <mainClass>cz.xelfi.quoridor.freemarkerdor.UI</mainClass>
   120                 </manifest>
   121             </archive>
   122         </configuration>
   123       </plugin>
   124       </plugins>
   125   </build>
   126 </project>
   127 
   128 
   129 
   130 
   131 
   132 
   133 
   134 
   135