freemarkerdor/pom.xml
changeset 86 8c9969f89021
parent 85 3574b08dc3c3
child 87 96f80f14cfcd
     1.1 --- a/freemarkerdor/pom.xml	Mon Sep 14 16:11:39 2009 +0200
     1.2 +++ b/freemarkerdor/pom.xml	Mon Sep 14 18:38:08 2009 +0200
     1.3 @@ -73,33 +73,25 @@
     1.4          </configuration>
     1.5        </plugin>
     1.6        <plugin>
     1.7 -        <groupId>org.apache.maven.plugins</groupId>
     1.8 -        <artifactId>maven-shade-plugin</artifactId>
     1.9 -        <version>1.2.1</version>
    1.10 -        <configuration>
    1.11 -          <!-- put your configurations here -->
    1.12 -        </configuration>
    1.13 +        <artifactId>maven-assembly-plugin</artifactId>
    1.14 +        <version>2.2-beta-2</version>
    1.15          <executions>
    1.16            <execution>
    1.17 +            <id>create-executable-jar</id>
    1.18              <phase>package</phase>
    1.19              <goals>
    1.20 -              <goal>shade</goal>
    1.21 +              <goal>single</goal>
    1.22              </goals>
    1.23              <configuration>
    1.24 -              <transformers>
    1.25 -                <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer">
    1.26 -                </transformer>
    1.27 -                <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
    1.28 -                  <manifestEntries>
    1.29 -                    <Main-Class>cz.xelfi.quoridor.freemarkerdor.UI</Main-Class>
    1.30 -                  </manifestEntries>
    1.31 -                </transformer>
    1.32 -              </transformers>
    1.33 +              <descriptors>
    1.34 +                <descriptor>all-zip.xml</descriptor>
    1.35 +              </descriptors>
    1.36 +              <finalName>freemarkerdor-${version}</finalName>
    1.37              </configuration>
    1.38            </execution>
    1.39          </executions>
    1.40 -    </plugin>
    1.41 -  </plugins>
    1.42 +      </plugin>
    1.43 +   </plugins>
    1.44    </build>
    1.45  </project>
    1.46