author | František Kučera <franta-hg@frantovo.cz> |
Sat, 28 Feb 2009 21:31:02 +0100 | |
changeset 1 | 639991d0808a |
permissions | -rw-r--r-- |
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
5 <groupId>gnujaxp</groupId>
6 <artifactId>gnujaxp</artifactId>
7 <version>1.0.0</version>
8 <build>
9 <plugins>
10 <plugin>
11 <artifactId>maven-antrun-plugin</artifactId>
12 <executions>
13 <execution>
14 <phase>generate-sources</phase>
15 <configuration>
16 <tasks>
17 <unzip src="gnujaxp.jar"
18 dest="target/classes">
19 </unzip>
20 </tasks>
21 </configuration>
22 <goals>
23 <goal>run</goal>
24 </goals>
25 </execution>
26 </executions>
27 </plugin>
28 </plugins>
29 </build>
30 </project>