blob: 2be7b5e3f7301a197a467e880b565faf3b99a32c [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>
vinayakb5ee049d2013-04-06 21:21:29 +000034
ramangrover29330a5412013-04-29 20:59:17 -070035 <plugin>
36 <groupId>org.jvnet.jaxb2.maven2</groupId>
37 <artifactId>maven-jaxb2-plugin</artifactId>
38 <executions>
39 <execution>
40 <id>configuration</id>
41 <goals>
42 <goal>generate</goal>
43 </goals>
44 <configuration>
45 <args>
46 <arg>-Xsetters</arg>
47 <arg>-Xvalue-constructor</arg>
48 </args>
49 <plugins>
50 <plugin>
51 <groupId>org.jvnet.jaxb2_commons</groupId>
52 <artifactId>jaxb2-basics</artifactId>
53 <version>0.6.2</version>
54 </plugin>
55 <plugin>
56 <groupId>org.jvnet.jaxb2_commons</groupId>
57 <artifactId>jaxb2-value-constructor</artifactId>
58 <version>3.0</version>
59 </plugin>
60 </plugins>
61 <schemaDirectory>src/main/resources/schema</schemaDirectory>
62 <schemaIncludes>
63 <include>installer-conf.xsd</include>
64 </schemaIncludes>
65 <generatePackage>edu.uci.ics.asterix.installer.schema.conf</generatePackage>
66 <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory>
67 </configuration>
68 </execution>
69 <execution>
70 <id>cluster</id>
71 <goals>
72 <goal>generate</goal>
73 </goals>
74 <configuration>
ramangrover29330a5412013-04-29 20:59:17 -070075 <schemaDirectory>src/main/resources/schema</schemaDirectory>
76 <schemaIncludes>
77 <include>cluster.xsd</include>
78 </schemaIncludes>
79 <generatePackage>edu.uci.ics.asterix.installer.schema.cluster</generatePackage>
80 <bindingDirectory>src/main/resources/schema</bindingDirectory>
81 <bindingIncludes>
82 <bindingInclude>jaxb-bindings.xjb</bindingInclude>
83 </bindingIncludes>
84 <generateDirectory>${project.build.directory}/generated-sources/cluster</generateDirectory>
85 </configuration>
86 </execution>
87 </executions>
88 </plugin>
89 <plugin>
90 <artifactId>maven-assembly-plugin</artifactId>
91 <version>2.2-beta-5</version>
92 <executions>
93 <execution>
94 <configuration>
95 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
96 </configuration>
97 <phase>package</phase>
98 <goals>
99 <goal>attached</goal>
100 </goals>
101 </execution>
102 </executions>
103 </plugin>
104 <plugin>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-failsafe-plugin</artifactId>
107 <version>2.6</version>
108 <executions>
109 <execution>
110 <goals>
111 <goal>integration-test</goal>
112 <goal>verify</goal>
113 </goals>
114 </execution>
115 </executions>
116 </plugin>
117 </plugins>
118 </build>
vinayakb5ee049d2013-04-06 21:21:29 +0000119
ramangrover29330a5412013-04-29 20:59:17 -0700120 <dependencies>
121 <dependency>
122 <groupId>junit</groupId>
123 <artifactId>junit</artifactId>
124 <version>4.8.1</version>
125 <scope>test</scope>
126 </dependency>
127 <dependency>
128 <groupId>args4j</groupId>
129 <artifactId>args4j</artifactId>
130 <version>2.0.12</version>
131 <type>jar</type>
132 <scope>compile</scope>
133 </dependency>
134 <dependency>
135 <groupId>org.apache.zookeeper</groupId>
136 <artifactId>zookeeper</artifactId>
137 <version>3.4.5</version>
138 <exclusions>
139 <exclusion>
140 <groupId>com.sun.jmx</groupId>
141 <artifactId>jmxri</artifactId>
142 </exclusion>
143 <exclusion>
144 <groupId>com.sun.jdmk</groupId>
145 <artifactId>jmxtools</artifactId>
146 </exclusion>
147 <exclusion>
148 <groupId>javax.jms</groupId>
149 <artifactId>jms</artifactId>
150 </exclusion>
151 </exclusions>
152 </dependency>
153 <dependency>
154 <groupId>commons-io</groupId>
155 <artifactId>commons-io</artifactId>
156 <version>1.4</version>
157 </dependency>
158 <dependency>
159 <groupId>edu.uci.ics.asterix</groupId>
160 <artifactId>asterix-events</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700161 <version>0.8.1-SNAPSHOT</version>
ramangrover29330a5412013-04-29 20:59:17 -0700162 <type>jar</type>
163 <scope>compile</scope>
164 </dependency>
165 <dependency>
166 <groupId>edu.uci.ics.asterix</groupId>
167 <artifactId>asterix-common</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700168 <version>0.8.1-SNAPSHOT</version>
ramangrover298be29bd2013-06-11 08:59:44 -0700169 <type>test-jar</type>
170 <scope>test</scope>
ramangrover29330a5412013-04-29 20:59:17 -0700171 </dependency>
ramangrover29330a5412013-04-29 20:59:17 -0700172 <dependency>
173 <groupId>edu.uci.ics.asterix</groupId>
174 <artifactId>asterix-server</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700175 <version>0.8.1-SNAPSHOT</version>
ramangrover29330a5412013-04-29 20:59:17 -0700176 <type>zip</type>
177 <classifier>binary-assembly</classifier>
178 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700179 <dependency>
180 <groupId>edu.uci.ics.asterix</groupId>
181 <artifactId>asterix-test-framework</artifactId>
182 <version>0.8.1-SNAPSHOT</version>
183 <scope>test</scope>
184 </dependency>
ramangrover29330a5412013-04-29 20:59:17 -0700185 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000186</project>