blob: f75e15aa2322f57d78eeef307388e058bf09fb0c [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>
vinayakb5ee049d2013-04-06 21:21:29 +000038
ramangrover29330a5412013-04-29 20:59:17 -070039 <plugin>
40 <groupId>org.jvnet.jaxb2.maven2</groupId>
41 <artifactId>maven-jaxb2-plugin</artifactId>
42 <executions>
43 <execution>
44 <id>configuration</id>
45 <goals>
46 <goal>generate</goal>
47 </goals>
48 <configuration>
49 <args>
50 <arg>-Xsetters</arg>
51 <arg>-Xvalue-constructor</arg>
52 </args>
53 <plugins>
54 <plugin>
55 <groupId>org.jvnet.jaxb2_commons</groupId>
56 <artifactId>jaxb2-basics</artifactId>
57 <version>0.6.2</version>
58 </plugin>
59 <plugin>
60 <groupId>org.jvnet.jaxb2_commons</groupId>
61 <artifactId>jaxb2-value-constructor</artifactId>
62 <version>3.0</version>
63 </plugin>
64 </plugins>
65 <schemaDirectory>src/main/resources/schema</schemaDirectory>
66 <schemaIncludes>
67 <include>installer-conf.xsd</include>
68 </schemaIncludes>
69 <generatePackage>edu.uci.ics.asterix.installer.schema.conf</generatePackage>
70 <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory>
71 </configuration>
72 </execution>
73 <execution>
74 <id>cluster</id>
75 <goals>
76 <goal>generate</goal>
77 </goals>
78 <configuration>
79 <args>
80 <arg>-Xsetters</arg>
81 <arg>-Xvalue-constructor</arg>
82 </args>
83 <schemaDirectory>src/main/resources/schema</schemaDirectory>
84 <schemaIncludes>
85 <include>cluster.xsd</include>
86 </schemaIncludes>
87 <generatePackage>edu.uci.ics.asterix.installer.schema.cluster</generatePackage>
88 <bindingDirectory>src/main/resources/schema</bindingDirectory>
89 <bindingIncludes>
90 <bindingInclude>jaxb-bindings.xjb</bindingInclude>
91 </bindingIncludes>
92 <generateDirectory>${project.build.directory}/generated-sources/cluster</generateDirectory>
93 </configuration>
94 </execution>
95 </executions>
96 </plugin>
97 <plugin>
98 <artifactId>maven-assembly-plugin</artifactId>
99 <version>2.2-beta-5</version>
100 <executions>
101 <execution>
102 <configuration>
103 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
104 </configuration>
105 <phase>package</phase>
106 <goals>
107 <goal>attached</goal>
108 </goals>
109 </execution>
110 </executions>
111 </plugin>
112 <plugin>
113 <groupId>org.apache.maven.plugins</groupId>
114 <artifactId>maven-failsafe-plugin</artifactId>
115 <version>2.6</version>
Young-Seok778e0192013-09-27 15:09:28 -0700116 <configuration>
117 <runOrder>alphabetical</runOrder>
118 <forkMode>pertest</forkMode>
119 </configuration>
ramangrover29330a5412013-04-29 20:59:17 -0700120 <executions>
121 <execution>
122 <goals>
123 <goal>integration-test</goal>
124 <goal>verify</goal>
125 </goals>
126 </execution>
127 </executions>
128 </plugin>
129 </plugins>
130 </build>
vinayakb5ee049d2013-04-06 21:21:29 +0000131
ramangrover29330a5412013-04-29 20:59:17 -0700132 <dependencies>
133 <dependency>
134 <groupId>junit</groupId>
135 <artifactId>junit</artifactId>
136 <version>4.8.1</version>
137 <scope>test</scope>
138 </dependency>
139 <dependency>
140 <groupId>args4j</groupId>
141 <artifactId>args4j</artifactId>
142 <version>2.0.12</version>
143 <type>jar</type>
144 <scope>compile</scope>
145 </dependency>
146 <dependency>
147 <groupId>org.apache.zookeeper</groupId>
148 <artifactId>zookeeper</artifactId>
149 <version>3.4.5</version>
150 <exclusions>
151 <exclusion>
152 <groupId>com.sun.jmx</groupId>
153 <artifactId>jmxri</artifactId>
154 </exclusion>
155 <exclusion>
156 <groupId>com.sun.jdmk</groupId>
157 <artifactId>jmxtools</artifactId>
158 </exclusion>
159 <exclusion>
160 <groupId>javax.jms</groupId>
161 <artifactId>jms</artifactId>
162 </exclusion>
163 </exclusions>
164 </dependency>
165 <dependency>
166 <groupId>commons-io</groupId>
167 <artifactId>commons-io</artifactId>
168 <version>1.4</version>
169 </dependency>
170 <dependency>
171 <groupId>edu.uci.ics.asterix</groupId>
172 <artifactId>asterix-events</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700173 <version>0.8.1-SNAPSHOT</version>
ramangrover29330a5412013-04-29 20:59:17 -0700174 <type>jar</type>
175 <scope>compile</scope>
176 </dependency>
177 <dependency>
178 <groupId>edu.uci.ics.asterix</groupId>
179 <artifactId>asterix-common</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700180 <version>0.8.1-SNAPSHOT</version>
ramangrover29330a5412013-04-29 20:59:17 -0700181 <type>jar</type>
182 <scope>compile</scope>
183 </dependency>
184 <dependency>
185 <groupId>edu.uci.ics.asterix</groupId>
186 <artifactId>asterix-common</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700187 <version>0.8.1-SNAPSHOT</version>
ramangrover29330a5412013-04-29 20:59:17 -0700188 <type>test-jar</type>
189 <scope>test</scope>
190 </dependency>
191 <dependency>
192 <groupId>edu.uci.ics.asterix</groupId>
193 <artifactId>asterix-server</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700194 <version>0.8.1-SNAPSHOT</version>
ramangrover29330a5412013-04-29 20:59:17 -0700195 <type>zip</type>
196 <classifier>binary-assembly</classifier>
197 </dependency>
198 <dependency>
199 <groupId>edu.uci.ics.asterix</groupId>
200 <artifactId>asterix-test-framework</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700201 <version>0.8.1-SNAPSHOT</version>
ramangrover29330a5412013-04-29 20:59:17 -0700202 <scope>test</scope>
203 </dependency>
204 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000205
vinayakb5ee049d2013-04-06 21:21:29 +0000206</project>