blob: 36b2efaea3c464cea1d8ae261ff70744c9278bac [file] [log] [blame]
ramangrover29330a5412013-04-29 20:59:17 -07001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <artifactId>asterix</artifactId>
6 <groupId>edu.uci.ics.asterix</groupId>
7 <version>0.0.5-SNAPSHOT</version>
8 </parent>
9 <artifactId>asterix-installer</artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +000010
ramangrover29330a5412013-04-29 20:59:17 -070011 <properties>
12 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000014
ramangrover29330a5412013-04-29 20:59:17 -070015 <build>
16 <plugins>
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-compiler-plugin</artifactId>
20 <version>2.0.2</version>
21 <configuration>
22 <source>1.6</source>
23 <target>1.6</target>
24 </configuration>
25 </plugin>
vinayakb5ee049d2013-04-06 21:21:29 +000026
ramangrover29330a5412013-04-29 20:59:17 -070027 <plugin>
28 <groupId>org.jvnet.jaxb2.maven2</groupId>
29 <artifactId>maven-jaxb2-plugin</artifactId>
30 <executions>
31 <execution>
32 <id>configuration</id>
33 <goals>
34 <goal>generate</goal>
35 </goals>
36 <configuration>
37 <args>
38 <arg>-Xsetters</arg>
39 <arg>-Xvalue-constructor</arg>
40 </args>
41 <plugins>
42 <plugin>
43 <groupId>org.jvnet.jaxb2_commons</groupId>
44 <artifactId>jaxb2-basics</artifactId>
45 <version>0.6.2</version>
46 </plugin>
47 <plugin>
48 <groupId>org.jvnet.jaxb2_commons</groupId>
49 <artifactId>jaxb2-value-constructor</artifactId>
50 <version>3.0</version>
51 </plugin>
52 </plugins>
53 <schemaDirectory>src/main/resources/schema</schemaDirectory>
54 <schemaIncludes>
55 <include>installer-conf.xsd</include>
56 </schemaIncludes>
57 <generatePackage>edu.uci.ics.asterix.installer.schema.conf</generatePackage>
58 <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory>
59 </configuration>
60 </execution>
61 <execution>
62 <id>cluster</id>
63 <goals>
64 <goal>generate</goal>
65 </goals>
66 <configuration>
67 <args>
68 <arg>-Xsetters</arg>
69 <arg>-Xvalue-constructor</arg>
70 </args>
71 <schemaDirectory>src/main/resources/schema</schemaDirectory>
72 <schemaIncludes>
73 <include>cluster.xsd</include>
74 </schemaIncludes>
75 <generatePackage>edu.uci.ics.asterix.installer.schema.cluster</generatePackage>
76 <bindingDirectory>src/main/resources/schema</bindingDirectory>
77 <bindingIncludes>
78 <bindingInclude>jaxb-bindings.xjb</bindingInclude>
79 </bindingIncludes>
80 <generateDirectory>${project.build.directory}/generated-sources/cluster</generateDirectory>
81 </configuration>
82 </execution>
83 </executions>
84 </plugin>
85 <plugin>
86 <artifactId>maven-assembly-plugin</artifactId>
87 <version>2.2-beta-5</version>
88 <executions>
89 <execution>
90 <configuration>
91 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
92 </configuration>
93 <phase>package</phase>
94 <goals>
95 <goal>attached</goal>
96 </goals>
97 </execution>
98 </executions>
99 </plugin>
100 <plugin>
101 <groupId>org.apache.maven.plugins</groupId>
102 <artifactId>maven-failsafe-plugin</artifactId>
103 <version>2.6</version>
104 <executions>
105 <execution>
106 <goals>
107 <goal>integration-test</goal>
108 <goal>verify</goal>
109 </goals>
110 </execution>
111 </executions>
112 </plugin>
113 </plugins>
114 </build>
vinayakb5ee049d2013-04-06 21:21:29 +0000115
ramangrover29330a5412013-04-29 20:59:17 -0700116 <dependencies>
117 <dependency>
118 <groupId>junit</groupId>
119 <artifactId>junit</artifactId>
120 <version>4.8.1</version>
121 <scope>test</scope>
122 </dependency>
123 <dependency>
124 <groupId>args4j</groupId>
125 <artifactId>args4j</artifactId>
126 <version>2.0.12</version>
127 <type>jar</type>
128 <scope>compile</scope>
129 </dependency>
130 <dependency>
131 <groupId>org.apache.zookeeper</groupId>
132 <artifactId>zookeeper</artifactId>
133 <version>3.4.5</version>
134 <exclusions>
135 <exclusion>
136 <groupId>com.sun.jmx</groupId>
137 <artifactId>jmxri</artifactId>
138 </exclusion>
139 <exclusion>
140 <groupId>com.sun.jdmk</groupId>
141 <artifactId>jmxtools</artifactId>
142 </exclusion>
143 <exclusion>
144 <groupId>javax.jms</groupId>
145 <artifactId>jms</artifactId>
146 </exclusion>
147 </exclusions>
148 </dependency>
149 <dependency>
150 <groupId>commons-io</groupId>
151 <artifactId>commons-io</artifactId>
152 <version>1.4</version>
153 </dependency>
154 <dependency>
155 <groupId>edu.uci.ics.asterix</groupId>
156 <artifactId>asterix-events</artifactId>
157 <version>0.0.5-SNAPSHOT</version>
158 <type>jar</type>
159 <scope>compile</scope>
160 </dependency>
161 <dependency>
162 <groupId>edu.uci.ics.asterix</groupId>
163 <artifactId>asterix-common</artifactId>
164 <version>0.0.5-SNAPSHOT</version>
165 <type>jar</type>
166 <scope>compile</scope>
167 </dependency>
168 <dependency>
169 <groupId>edu.uci.ics.asterix</groupId>
170 <artifactId>asterix-common</artifactId>
171 <version>0.0.5-SNAPSHOT</version>
172 <type>test-jar</type>
173 <scope>test</scope>
174 </dependency>
175 <dependency>
176 <groupId>edu.uci.ics.asterix</groupId>
177 <artifactId>asterix-server</artifactId>
178 <version>0.0.5-SNAPSHOT</version>
179 <type>zip</type>
180 <classifier>binary-assembly</classifier>
181 </dependency>
182 <dependency>
183 <groupId>edu.uci.ics.asterix</groupId>
184 <artifactId>asterix-test-framework</artifactId>
185 <version>0.0.5-SNAPSHOT</version>
186 <scope>test</scope>
187 </dependency>
188 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000189</project>