blob: ad24146ec7e778855969e34e939d2c1bb17cb86d [file] [log] [blame]
ramangrover298be29bd2013-06-11 08:59:44 -07001<!-- ! Copyright 2009-2013 by The Regents of the University of California
2 ! Licensed under the Apache License, Version 2.0 (the "License"); ! you may
3 not use this file except in compliance with the License. ! you may obtain
4 a copy of the License from ! ! http://www.apache.org/licenses/LICENSE-2.0
5 ! ! Unless required by applicable law or agreed to in writing, software !
6 distributed under the License is distributed on an "AS IS" BASIS, ! WITHOUT
7 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! See the
8 License for the specific language governing permissions and ! limitations
9 under the License. ! -->
Vinayak Borkar9cca81b2013-12-11 21:53:45 -080010<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">
ramangrover298be29bd2013-06-11 08:59:44 -070011 <modelVersion>4.0.0</modelVersion>
12 <parent>
13 <artifactId>asterix</artifactId>
14 <groupId>edu.uci.ics.asterix</groupId>
Vinayak Borkarb6338312013-12-19 17:30:15 -080015 <version>0.8.2</version>
ramangrover298be29bd2013-06-11 08:59:44 -070016 </parent>
17 <artifactId>asterix-installer</artifactId>
ramangrover29330a5412013-04-29 20:59:17 -070018 <properties>
19 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Young-Seok56a41e72013-12-17 17:22:33 -080020 <test.excludes>**/DmlRecoveryIT.java</test.excludes>
ramangrover29330a5412013-04-29 20:59:17 -070021 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000022
ramangrover29330a5412013-04-29 20:59:17 -070023 <build>
24 <plugins>
25 <plugin>
26 <groupId>org.apache.maven.plugins</groupId>
27 <artifactId>maven-compiler-plugin</artifactId>
28 <version>2.0.2</version>
29 <configuration>
ramangrover298be29bd2013-06-11 08:59:44 -070030 <source>1.7</source>
31 <target>1.7</target>
ramangrover29330a5412013-04-29 20:59:17 -070032 </configuration>
33 </plugin>
ramangrover29330a5412013-04-29 20:59:17 -070034 <plugin>
35 <groupId>org.jvnet.jaxb2.maven2</groupId>
36 <artifactId>maven-jaxb2-plugin</artifactId>
37 <executions>
38 <execution>
39 <id>configuration</id>
40 <goals>
41 <goal>generate</goal>
42 </goals>
43 <configuration>
44 <args>
45 <arg>-Xsetters</arg>
46 <arg>-Xvalue-constructor</arg>
47 </args>
48 <plugins>
49 <plugin>
50 <groupId>org.jvnet.jaxb2_commons</groupId>
51 <artifactId>jaxb2-basics</artifactId>
52 <version>0.6.2</version>
53 </plugin>
54 <plugin>
55 <groupId>org.jvnet.jaxb2_commons</groupId>
56 <artifactId>jaxb2-value-constructor</artifactId>
57 <version>3.0</version>
58 </plugin>
59 </plugins>
60 <schemaDirectory>src/main/resources/schema</schemaDirectory>
61 <schemaIncludes>
62 <include>installer-conf.xsd</include>
63 </schemaIncludes>
64 <generatePackage>edu.uci.ics.asterix.installer.schema.conf</generatePackage>
65 <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory>
66 </configuration>
67 </execution>
68 <execution>
69 <id>cluster</id>
70 <goals>
71 <goal>generate</goal>
72 </goals>
73 <configuration>
ramangrover29330a5412013-04-29 20:59:17 -070074 <schemaDirectory>src/main/resources/schema</schemaDirectory>
75 <schemaIncludes>
76 <include>cluster.xsd</include>
77 </schemaIncludes>
78 <generatePackage>edu.uci.ics.asterix.installer.schema.cluster</generatePackage>
79 <bindingDirectory>src/main/resources/schema</bindingDirectory>
80 <bindingIncludes>
81 <bindingInclude>jaxb-bindings.xjb</bindingInclude>
82 </bindingIncludes>
83 <generateDirectory>${project.build.directory}/generated-sources/cluster</generateDirectory>
84 </configuration>
85 </execution>
86 </executions>
87 </plugin>
88 <plugin>
89 <artifactId>maven-assembly-plugin</artifactId>
90 <version>2.2-beta-5</version>
91 <executions>
92 <execution>
93 <configuration>
94 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
95 </configuration>
96 <phase>package</phase>
97 <goals>
98 <goal>attached</goal>
99 </goals>
100 </execution>
101 </executions>
102 </plugin>
103 <plugin>
104 <groupId>org.apache.maven.plugins</groupId>
105 <artifactId>maven-failsafe-plugin</artifactId>
106 <version>2.6</version>
Young-Seok778e0192013-09-27 15:09:28 -0700107 <configuration>
108 <runOrder>alphabetical</runOrder>
109 <forkMode>pertest</forkMode>
Young-Seok56a41e72013-12-17 17:22:33 -0800110 <excludes>
111 <exclude>${test.excludes}</exclude>
112 </excludes>
Young-Seok778e0192013-09-27 15:09:28 -0700113 </configuration>
ramangrover29330a5412013-04-29 20:59:17 -0700114 <executions>
115 <execution>
116 <goals>
117 <goal>integration-test</goal>
118 <goal>verify</goal>
119 </goals>
120 </execution>
121 </executions>
122 </plugin>
123 </plugins>
124 </build>
vinayakb5ee049d2013-04-06 21:21:29 +0000125
ramangrover29330a5412013-04-29 20:59:17 -0700126 <dependencies>
127 <dependency>
128 <groupId>junit</groupId>
129 <artifactId>junit</artifactId>
130 <version>4.8.1</version>
131 <scope>test</scope>
132 </dependency>
133 <dependency>
134 <groupId>args4j</groupId>
135 <artifactId>args4j</artifactId>
136 <version>2.0.12</version>
137 <type>jar</type>
138 <scope>compile</scope>
139 </dependency>
140 <dependency>
141 <groupId>org.apache.zookeeper</groupId>
142 <artifactId>zookeeper</artifactId>
143 <version>3.4.5</version>
144 <exclusions>
145 <exclusion>
146 <groupId>com.sun.jmx</groupId>
147 <artifactId>jmxri</artifactId>
148 </exclusion>
149 <exclusion>
150 <groupId>com.sun.jdmk</groupId>
151 <artifactId>jmxtools</artifactId>
152 </exclusion>
153 <exclusion>
154 <groupId>javax.jms</groupId>
155 <artifactId>jms</artifactId>
156 </exclusion>
157 </exclusions>
158 </dependency>
159 <dependency>
160 <groupId>commons-io</groupId>
161 <artifactId>commons-io</artifactId>
162 <version>1.4</version>
163 </dependency>
164 <dependency>
165 <groupId>edu.uci.ics.asterix</groupId>
166 <artifactId>asterix-events</artifactId>
Vinayak Borkarb6338312013-12-19 17:30:15 -0800167 <version>0.8.2</version>
ramangrover29330a5412013-04-29 20:59:17 -0700168 <type>jar</type>
169 <scope>compile</scope>
170 </dependency>
171 <dependency>
172 <groupId>edu.uci.ics.asterix</groupId>
173 <artifactId>asterix-common</artifactId>
Vinayak Borkarb6338312013-12-19 17:30:15 -0800174 <version>0.8.2</version>
ramangrover298be29bd2013-06-11 08:59:44 -0700175 <type>test-jar</type>
176 <scope>test</scope>
ramangrover29330a5412013-04-29 20:59:17 -0700177 </dependency>
ramangrover29330a5412013-04-29 20:59:17 -0700178 <dependency>
179 <groupId>edu.uci.ics.asterix</groupId>
180 <artifactId>asterix-server</artifactId>
Vinayak Borkarb6338312013-12-19 17:30:15 -0800181 <version>0.8.2</version>
ramangrover29330a5412013-04-29 20:59:17 -0700182 <type>zip</type>
183 <classifier>binary-assembly</classifier>
184 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700185 <dependency>
186 <groupId>edu.uci.ics.asterix</groupId>
187 <artifactId>asterix-test-framework</artifactId>
Vinayak Borkarb6338312013-12-19 17:30:15 -0800188 <version>0.8.2</version>
ramangrover298be29bd2013-06-11 08:59:44 -0700189 <scope>test</scope>
190 </dependency>
ramangrover29330a5412013-04-29 20:59:17 -0700191 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000192</project>