blob: f06238d98ba1e7ee9db3cceb7274f8e1d0587dc2 [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001<!--
2 ! Copyright 2009-2013 by The Regents of the University of California
3 ! Licensed under the Apache License, Version 2.0 (the "License");
4 ! you may not use this file except in compliance with the License.
5 ! you may obtain a copy of the License from
6 !
7 ! http://www.apache.org/licenses/LICENSE-2.0
8 !
9 ! Unless required by applicable law or agreed to in writing, software
10 ! distributed under the License is distributed on an "AS IS" BASIS,
11 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 ! See the License for the specific language governing permissions and
13 ! limitations under the License.
14 !-->
vinayakb8a1a7182013-04-07 01:45:00 +000015<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/xsd/maven-4.0.0.xsd">
vinayakb5ee049d2013-04-06 21:21:29 +000016 <modelVersion>4.0.0</modelVersion>
17 <parent>
18 <artifactId>asterix</artifactId>
19 <groupId>edu.uci.ics.asterix</groupId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -070020 <version>0.8.1-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +000021 </parent>
22 <artifactId>asterix-installer</artifactId>
ramangrover29330a5412013-04-29 20:59:17 -070023 <properties>
24 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000026
ramangrover29330a5412013-04-29 20:59:17 -070027 <build>
28 <plugins>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
31 <artifactId>maven-compiler-plugin</artifactId>
32 <version>2.0.2</version>
33 <configuration>
34 <source>1.6</source>
35 <target>1.6</target>
36 </configuration>
37 </plugin>
ramangrover29330a5412013-04-29 20:59:17 -070038 <plugin>
39 <artifactId>maven-assembly-plugin</artifactId>
40 <version>2.2-beta-5</version>
41 <executions>
42 <execution>
43 <configuration>
44 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
45 </configuration>
46 <phase>package</phase>
47 <goals>
48 <goal>attached</goal>
49 </goals>
50 </execution>
51 </executions>
52 </plugin>
53 <plugin>
54 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-failsafe-plugin</artifactId>
56 <version>2.6</version>
57 <executions>
58 <execution>
59 <goals>
60 <goal>integration-test</goal>
61 <goal>verify</goal>
62 </goals>
63 </execution>
64 </executions>
65 </plugin>
66 </plugins>
67 </build>
vinayakb5ee049d2013-04-06 21:21:29 +000068
ramangrover29330a5412013-04-29 20:59:17 -070069 <dependencies>
70 <dependency>
71 <groupId>junit</groupId>
72 <artifactId>junit</artifactId>
73 <version>4.8.1</version>
74 <scope>test</scope>
75 </dependency>
76 <dependency>
77 <groupId>args4j</groupId>
78 <artifactId>args4j</artifactId>
79 <version>2.0.12</version>
80 <type>jar</type>
81 <scope>compile</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.apache.zookeeper</groupId>
85 <artifactId>zookeeper</artifactId>
86 <version>3.4.5</version>
87 <exclusions>
88 <exclusion>
89 <groupId>com.sun.jmx</groupId>
90 <artifactId>jmxri</artifactId>
91 </exclusion>
92 <exclusion>
93 <groupId>com.sun.jdmk</groupId>
94 <artifactId>jmxtools</artifactId>
95 </exclusion>
96 <exclusion>
97 <groupId>javax.jms</groupId>
98 <artifactId>jms</artifactId>
99 </exclusion>
100 </exclusions>
101 </dependency>
102 <dependency>
103 <groupId>commons-io</groupId>
104 <artifactId>commons-io</artifactId>
105 <version>1.4</version>
106 </dependency>
107 <dependency>
108 <groupId>edu.uci.ics.asterix</groupId>
109 <artifactId>asterix-events</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700110 <version>0.8.1-SNAPSHOT</version>
ramangrover29330a5412013-04-29 20:59:17 -0700111 <type>jar</type>
112 <scope>compile</scope>
113 </dependency>
114 <dependency>
115 <groupId>edu.uci.ics.asterix</groupId>
116 <artifactId>asterix-common</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700117 <version>0.8.1-SNAPSHOT</version>
ramangrover29330a5412013-04-29 20:59:17 -0700118 <type>jar</type>
119 <scope>compile</scope>
120 </dependency>
121 <dependency>
122 <groupId>edu.uci.ics.asterix</groupId>
123 <artifactId>asterix-common</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700124 <version>0.8.1-SNAPSHOT</version>
ramangrover29330a5412013-04-29 20:59:17 -0700125 <type>test-jar</type>
126 <scope>test</scope>
127 </dependency>
128 <dependency>
129 <groupId>edu.uci.ics.asterix</groupId>
130 <artifactId>asterix-server</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700131 <version>0.8.1-SNAPSHOT</version>
ramangrover29330a5412013-04-29 20:59:17 -0700132 <type>zip</type>
133 <classifier>binary-assembly</classifier>
134 </dependency>
135 <dependency>
136 <groupId>edu.uci.ics.asterix</groupId>
137 <artifactId>asterix-test-framework</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700138 <version>0.8.1-SNAPSHOT</version>
ramangrover29330a5412013-04-29 20:59:17 -0700139 <scope>test</scope>
140 </dependency>
141 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000142
vinayakb5ee049d2013-04-06 21:21:29 +0000143</project>