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