freemarkerdor/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 23 Dec 2009 21:21:53 +0100
changeset 174 14f0ef3e09e0
parent 170 7d29ebd9c208
child 176 700003474749
permissions -rw-r--r--
Let's publish updated version
     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.47</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   </dependencies>
    75   <build>
    76     <plugins>
    77       <plugin>
    78         <groupId>org.apache.maven.plugins</groupId>
    79         <artifactId>maven-compiler-plugin</artifactId>
    80         <version>2.0.2</version>
    81         <configuration>
    82           <source>1.5</source>
    83           <target>1.5</target>
    84         </configuration>
    85       </plugin>
    86       <plugin>
    87         <artifactId>maven-assembly-plugin</artifactId>
    88         <version>2.2-beta-2</version>
    89         <executions>
    90           <execution>
    91             <id>create-executable-jar</id>
    92             <phase>package</phase>
    93             <goals>
    94               <goal>single</goal>
    95             </goals>
    96             <configuration>
    97               <descriptors>
    98                 <descriptor>all-zip.xml</descriptor>
    99               </descriptors>
   100               <finalName>freemarkerdor-${version}</finalName>
   101             </configuration>
   102           </execution>
   103         </executions>
   104       </plugin>
   105       <plugin>
   106         <groupId>org.apache.maven.plugins</groupId>
   107         <artifactId>maven-jar-plugin</artifactId>
   108         <configuration>
   109             <archive>
   110                 <manifest>
   111                     <addClasspath>true</addClasspath>
   112                     <classpathPrefix>lib/</classpathPrefix>
   113                     <mainClass>cz.xelfi.quoridor.freemarkerdor.UI</mainClass>
   114                 </manifest>
   115             </archive>
   116         </configuration>
   117       </plugin>
   118       </plugins>
   119   </build>
   120 </project>
   121 
   122 
   123 
   124 
   125 
   126 
   127 
   128