freemarkerdor/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 07 Sep 2009 16:33:56 +0200
changeset 65 1dae4b5f0259
parent 64 e5a3b7ab719d
child 67 f5741fe21fe6
permissions -rw-r--r--
We need to merge META-INF/services
     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   <version>1.0-SNAPSHOT</version>
    13   <name>freemarkerdor</name>
    14   <url>http://maven.apache.org</url>
    15   <dependencies>
    16     <dependency>
    17       <groupId>${project.groupId}</groupId>
    18       <artifactId>webidor</artifactId>
    19       <version>1.0</version>
    20     </dependency>
    21     <dependency>
    22       <groupId>org.netbeans.modules</groupId>
    23       <artifactId>org-netbeans-libs-freemarker</artifactId>
    24       <version>RELEASE67</version>
    25       <exclusions>
    26         <exclusion>
    27           <artifactId>script-api</artifactId>
    28           <groupId>org.netbeans.external</groupId>
    29         </exclusion>
    30         <exclusion>
    31           <artifactId>org-netbeans-libs-jsr223</artifactId>
    32           <groupId>org.netbeans.api</groupId>
    33         </exclusion>
    34         <exclusion>
    35           <artifactId>freemarker-2.3.8</artifactId>
    36           <groupId>org.netbeans.external</groupId>
    37         </exclusion>
    38       </exclusions>
    39     </dependency>
    40     <dependency>
    41       <groupId>com.sun.jersey</groupId>
    42       <artifactId>jersey-client</artifactId>
    43       <version>1.1.0-ea</version>
    44     </dependency>
    45     <dependency>
    46       <groupId>com.sun.jersey.test.framework</groupId>
    47       <artifactId>jersey-test-framework</artifactId>
    48       <version>1.1.0-ea</version>
    49       <scope>test</scope>
    50       <type>jar</type>
    51     </dependency>
    52     <dependency>
    53       <groupId>junit</groupId>
    54       <artifactId>junit</artifactId>
    55       <version>4.5</version>
    56       <scope>test</scope>
    57     </dependency>
    58     <dependency>
    59       <groupId>freemarker</groupId>
    60       <artifactId>freemarker</artifactId>
    61       <version>2.3.8</version>
    62     </dependency>
    63   </dependencies>
    64   <build>
    65     <plugins>
    66       <plugin>
    67         <groupId>org.apache.maven.plugins</groupId>
    68         <artifactId>maven-compiler-plugin</artifactId>
    69         <version>2.0.2</version>
    70         <configuration>
    71           <source>1.5</source>
    72           <target>1.5</target>
    73         </configuration>
    74       </plugin>
    75       <plugin>
    76         <groupId>org.apache.maven.plugins</groupId>
    77         <artifactId>maven-shade-plugin</artifactId>
    78         <version>1.2.1</version>
    79         <configuration>
    80           <!-- put your configurations here -->
    81         </configuration>
    82         <executions>
    83           <execution>
    84             <phase>package</phase>
    85             <goals>
    86               <goal>shade</goal>
    87             </goals>
    88             <configuration>
    89               <transformers>
    90                 <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer">
    91                 </transformer>
    92                 <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
    93                   <manifestEntries>
    94                     <Main-Class>cz.xelfi.quoridor.freemarkerdor.UI</Main-Class>
    95                   </manifestEntries>
    96                 </transformer>
    97               </transformers>
    98             </configuration>
    99           </execution>
   100         </executions>
   101     </plugin>
   102   </plugins>
   103   </build>
   104 </project>
   105 
   106 
   107 
   108 
   109 
   110 
   111 
   112 
   113 
   114 
   115