blob: 706ae723ba314e45078b8acdc3b1e9eaa0283cfd [file] [log] [blame]
vinayakbcb36c5d2010-09-30 20:57:28 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <groupId>edu.uci.ics.hyracks.examples.text</groupId>
4 <artifactId>textapp</artifactId>
5 <version>0.1.3-SNAPSHOT</version>
6
7 <parent>
8 <groupId>edu.uci.ics.hyracks.examples</groupId>
9 <artifactId>text-example</artifactId>
10 <version>0.1.3-SNAPSHOT</version>
11 </parent>
12
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-dependency-plugin</artifactId>
18 <executions>
19 <execution>
20 <id>copy-dependencies</id>
21 <phase>package</phase>
22 <goals>
23 <goal>copy-dependencies</goal>
24 </goals>
25 <configuration>
26 <outputDirectory>target/application/lib</outputDirectory>
27 </configuration>
28 </execution>
29 </executions>
30 </plugin>
31 <plugin>
32 <artifactId>maven-assembly-plugin</artifactId>
33 <version>2.2-beta-5</version>
34 <executions>
35 <execution>
36 <configuration>
37 <descriptors>
38 <descriptor>src/main/assembly/app-assembly.xml</descriptor>
39 </descriptors>
40 </configuration>
41 <phase>package</phase>
42 <goals>
43 <goal>attached</goal>
44 </goals>
45 </execution>
46 </executions>
47 </plugin>
48 </plugins>
49 </build>
50 <dependencies>
51 <dependency>
52 <groupId>edu.uci.ics.hyracks.examples.text</groupId>
53 <artifactId>texthelper</artifactId>
54 <version>0.1.3-SNAPSHOT</version>
55 <scope>compile</scope>
56 </dependency>
57 </dependencies>
58</project>