UNPKG

1.34 kBXMLView Raw
1<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
4 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6 <groupId>com.egis</groupId>
7 <artifactId>mrp</artifactId>
8 <version>1.0</version>
9
10 <build>
11 <plugins>
12 <plugin>
13 <groupId>org.apache.maven.plugins</groupId>
14 <artifactId>maven-antrun-plugin</artifactId>
15 <version>1.5</version>
16 <configuration>
17 <target>
18 <taskdef name="gant" classname="org.codehaus.gant.ant.Gant"
19 classpathref="maven.plugin.classpath"/>
20 <gant file="build.gant" target="${target}">
21 </gant>
22 </target>
23 </configuration>
24 <dependencies>
25 <dependency>
26 <groupId>org.codehaus.gant</groupId>
27 <artifactId>gant_groovy2.3</artifactId>
28 <version>1.9.11</version>
29 </dependency>
30 </dependencies>
31
32 </plugin>
33 </plugins>
34 </build>
35</project>
\No newline at end of file