blob: de0e40ecfc9a3cd984a37b2f82aab51bd6be7efa [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. ! -->
ramangrover295a50c9c2013-04-17 19:37:04 -070010<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
ramangrover298be29bd2013-06-11 08:59:44 -070011 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12 <modelVersion>4.0.0</modelVersion>
13 <parent>
14 <artifactId>asterix</artifactId>
15 <groupId>edu.uci.ics.asterix</groupId>
16 <version>0.8.1-SNAPSHOT</version>
17 </parent>
18 <artifactId>asterix-installer</artifactId>
ramangrover29330a5412013-04-29 20:59:17 -070019 <properties>
20 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21 </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>
110 </configuration>
ramangrover29330a5412013-04-29 20:59:17 -0700111 <executions>
112 <execution>
113 <goals>
114 <goal>integration-test</goal>
115 <goal>verify</goal>
116 </goals>
117 </execution>
118 </executions>
119 </plugin>
120 </plugins>
121 </build>
vinayakb5ee049d2013-04-06 21:21:29 +0000122
ramangrover29330a5412013-04-29 20:59:17 -0700123 <dependencies>
124 <dependency>
125 <groupId>junit</groupId>
126 <artifactId>junit</artifactId>
127 <version>4.8.1</version>
128 <scope>test</scope>
129 </dependency>
130 <dependency>
131 <groupId>args4j</groupId>
132 <artifactId>args4j</artifactId>
133 <version>2.0.12</version>
134 <type>jar</type>
135 <scope>compile</scope>
136 </dependency>
137 <dependency>
138 <groupId>org.apache.zookeeper</groupId>
139 <artifactId>zookeeper</artifactId>
140 <version>3.4.5</version>
141 <exclusions>
142 <exclusion>
143 <groupId>com.sun.jmx</groupId>
144 <artifactId>jmxri</artifactId>
145 </exclusion>
146 <exclusion>
147 <groupId>com.sun.jdmk</groupId>
148 <artifactId>jmxtools</artifactId>
149 </exclusion>
150 <exclusion>
151 <groupId>javax.jms</groupId>
152 <artifactId>jms</artifactId>
153 </exclusion>
154 </exclusions>
155 </dependency>
156 <dependency>
157 <groupId>commons-io</groupId>
158 <artifactId>commons-io</artifactId>
159 <version>1.4</version>
160 </dependency>
161 <dependency>
162 <groupId>edu.uci.ics.asterix</groupId>
163 <artifactId>asterix-events</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700164 <version>0.8.1-SNAPSHOT</version>
ramangrover29330a5412013-04-29 20:59:17 -0700165 <type>jar</type>
166 <scope>compile</scope>
167 </dependency>
168 <dependency>
169 <groupId>edu.uci.ics.asterix</groupId>
170 <artifactId>asterix-common</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700171 <version>0.8.1-SNAPSHOT</version>
ramangrover298be29bd2013-06-11 08:59:44 -0700172 <type>test-jar</type>
173 <scope>test</scope>
ramangrover29330a5412013-04-29 20:59:17 -0700174 </dependency>
ramangrover29330a5412013-04-29 20:59:17 -0700175 <dependency>
176 <groupId>edu.uci.ics.asterix</groupId>
177 <artifactId>asterix-server</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700178 <version>0.8.1-SNAPSHOT</version>
ramangrover29330a5412013-04-29 20:59:17 -0700179 <type>zip</type>
180 <classifier>binary-assembly</classifier>
181 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700182 <dependency>
183 <groupId>edu.uci.ics.asterix</groupId>
184 <artifactId>asterix-test-framework</artifactId>
185 <version>0.8.1-SNAPSHOT</version>
186 <scope>test</scope>
187 </dependency>
ramangrover29330a5412013-04-29 20:59:17 -0700188 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000189</project>