blob: 0222956540de21ab4cb25900043aa7ba711a36f7 [file] [log] [blame]
vinayakb7ff0f4a2010-06-17 19:41:17 +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</groupId>
4 <artifactId>hyracks-core</artifactId>
vinayakb30098f92010-07-28 18:53:58 +00005 <version>0.0.5-SNAPSHOT</version>
vinayakb7ff0f4a2010-06-17 19:41:17 +00006 <build>
7 <plugins>
8 <plugin>
9 <groupId>org.apache.maven.plugins</groupId>
10 <artifactId>maven-compiler-plugin</artifactId>
11 <version>2.0.2</version>
12 <configuration>
13 <source>1.6</source>
14 <target>1.6</target>
15 </configuration>
16 </plugin>
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-jar-plugin</artifactId>
20 <version>2.2</version>
21 <executions>
22 <execution>
23 <goals>
24 <goal>test-jar</goal>
25 </goals>
26 </execution>
27 </executions>
28 </plugin>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
31 <artifactId>maven-surefire-plugin</artifactId>
32 <configuration>
33 <forkMode>pertest</forkMode>
34 <argLine>-enableassertions</argLine>
35 </configuration>
36 </plugin>
37 <plugin>
38 <groupId>org.codehaus.mojo</groupId>
39 <artifactId>appassembler-maven-plugin</artifactId>
40 <executions>
41 <execution>
42 <configuration>
43 <programs>
44 <program>
45 <mainClass>edu.uci.ics.hyracks.driver.CCDriver</mainClass>
46 <name>hyrackscc</name>
47 </program>
48 <program>
49 <mainClass>edu.uci.ics.hyracks.driver.NCDriver</mainClass>
50 <name>hyracksnc</name>
51 </program>
52 </programs>
53 <repositoryLayout>flat</repositoryLayout>
54 <repositoryName>lib</repositoryName>
55 </configuration>
56 <phase>package</phase>
57 <goals>
58 <goal>assemble</goal>
59 </goals>
60 </execution>
61 </executions>
62 </plugin>
63 <plugin>
64 <artifactId>maven-assembly-plugin</artifactId>
65 <version>2.2-beta-5</version>
66 <executions>
67 <execution>
68 <configuration>
69 <descriptors>
70 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
71 <descriptor>src/main/assembly/source-assembly.xml</descriptor>
72 </descriptors>
73 </configuration>
74 <phase>package</phase>
75 <goals>
76 <goal>attached</goal>
77 </goals>
78 </execution>
79 </executions>
80 </plugin>
81 </plugins>
82 </build>
83 <dependencies>
84 <dependency>
85 <groupId>org.eclipse.jetty</groupId>
86 <artifactId>jetty-server</artifactId>
87 <version>8.0.0.M0</version>
88 <type>jar</type>
89 <scope>compile</scope>
90 </dependency>
91 <dependency>
92 <groupId>junit</groupId>
93 <artifactId>junit</artifactId>
94 <version>4.8.1</version>
95 <type>jar</type>
96 <scope>test</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.apache.hadoop</groupId>
100 <artifactId>hadoop-core</artifactId>
101 <version>0.20.2</version>
102 <type>jar</type>
103 <scope>compile</scope>
104 </dependency>
105 <dependency>
106 <groupId>args4j</groupId>
107 <artifactId>args4j</artifactId>
108 <version>2.0.12</version>
109 <type>jar</type>
110 <scope>compile</scope>
111 </dependency>
112 <dependency>
113 <groupId>edu.uci.ics.dcache</groupId>
114 <artifactId>dcache-client</artifactId>
115 <version>0.0.1</version>
116 <scope>compile</scope>
117 </dependency>
118 <dependency>
119 <groupId>org.apache.wicket</groupId>
120 <artifactId>wicket</artifactId>
121 <version>1.4.7</version>
122 <type>jar</type>
123 <scope>compile</scope>
124 </dependency>
125 <dependency>
126 <groupId>org.json</groupId>
127 <artifactId>json</artifactId>
128 <version>20090211</version>
129 <type>jar</type>
130 <scope>compile</scope>
131 </dependency>
vinayakb30098f92010-07-28 18:53:58 +0000132 <dependency>
133 <groupId>jol</groupId>
134 <artifactId>jol</artifactId>
135 <version>1.0.0</version>
136 <type>jar</type>
137 <scope>compile</scope>
138 </dependency>
vinayakb7ff0f4a2010-06-17 19:41:17 +0000139 </dependencies>
140 <reporting>
141 <plugins>
142 <plugin>
143 <groupId>org.codehaus.mojo</groupId>
144 <artifactId>findbugs-maven-plugin</artifactId>
145 <version>2.0.1</version>
146 </plugin>
147 </plugins>
148 </reporting>
149</project>