blob: 8457198b39d717f49e22858f41f1da4de3ec8c23 [file] [log] [blame]
ramangrover2974915662013-06-06 15:12:21 -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. ! -->
vinayakb5ee049d2013-04-06 21:21:29 +000010
ramangrover29b2201c42013-05-30 15:40:24 -070011<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13 <modelVersion>4.0.0</modelVersion>
14 <parent>
15 <artifactId>asterix</artifactId>
16 <groupId>edu.uci.ics.asterix</groupId>
ramangrover2974915662013-06-06 15:12:21 -070017 <version>0.8.1-SNAPSHOT</version>
ramangrover29b2201c42013-05-30 15:40:24 -070018 </parent>
19 <groupId>edu.uci.ics.asterix</groupId>
20 <artifactId>asterix-events</artifactId>
ramangrover2974915662013-06-06 15:12:21 -070021 <version>0.8.1-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +000022
ramangrover29b2201c42013-05-30 15:40:24 -070023 <properties>
24 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000026
ramangrover29b2201c42013-05-30 15:40:24 -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>
38 <plugin>
39 <groupId>org.jvnet.jaxb2.maven2</groupId>
40 <artifactId>maven-jaxb2-plugin</artifactId>
41 <executions>
42 <execution>
43 <id>event</id>
44 <goals>
45 <goal>generate</goal>
46 </goals>
47 <configuration>
48 <args>
49 <arg>-Xsetters</arg>
50 <arg>-Xvalue-constructor</arg>
51 </args>
52 <plugins>
53 <plugin>
54 <groupId>org.jvnet.jaxb2_commons</groupId>
55 <artifactId>jaxb2-basics</artifactId>
56 <version>0.6.2</version>
57 </plugin>
58 <plugin>
59 <groupId>org.jvnet.jaxb2_commons</groupId>
60 <artifactId>jaxb2-value-constructor</artifactId>
61 <version>3.0</version>
62 </plugin>
63 </plugins>
64 <schemaDirectory>src/main/resources/schema</schemaDirectory>
65 <schemaIncludes>
66 <include>event.xsd</include>
67 </schemaIncludes>
68 <generatePackage>edu.uci.ics.asterix.event.schema.event</generatePackage>
69 <generateDirectory>${project.build.directory}/generated-sources/event</generateDirectory>
70 </configuration>
71 </execution>
72 <execution>
73 <id>configuration</id>
74 <goals>
75 <goal>generate</goal>
76 </goals>
77 <configuration>
78 <args>
79 <arg>-Xsetters</arg>
80 <arg>-Xvalue-constructor</arg>
81 </args>
82 <plugins>
83 <plugin>
84 <groupId>org.jvnet.jaxb2_commons</groupId>
85 <artifactId>jaxb2-basics</artifactId>
86 <version>0.6.2</version>
87 </plugin>
88 <plugin>
89 <groupId>org.jvnet.jaxb2_commons</groupId>
90 <artifactId>jaxb2-value-constructor</artifactId>
91 <version>3.0</version>
92 </plugin>
93 </plugins>
94 <schemaDirectory>src/main/resources/schema</schemaDirectory>
95 <schemaIncludes>
96 <include>installer-conf.xsd</include>
97 </schemaIncludes>
98 <generatePackage>edu.uci.ics.asterix.installer.schema.conf</generatePackage>
99 <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory>
100 </configuration>
101 </execution>
102 <execution>
103 <id>pattern</id>
104 <goals>
105 <goal>generate</goal>
106 </goals>
107 <configuration>
108 <args>
109 <arg>-Xsetters</arg>
110 <arg>-Xvalue-constructor</arg>
111 </args>
112 <plugins>
113 <plugin>
114 <groupId>org.jvnet.jaxb2_commons</groupId>
115 <artifactId>jaxb2-basics</artifactId>
116 <version>0.6.2</version>
117 </plugin>
118 <plugin>
119 <groupId>org.jvnet.jaxb2_commons</groupId>
120 <artifactId>jaxb2-value-constructor</artifactId>
121 <version>3.0</version>
122 </plugin>
123 </plugins>
124 <schemaDirectory>src/main/resources/schema</schemaDirectory>
125 <schemaIncludes>
126 <include>pattern.xsd</include>
127 </schemaIncludes>
128 <generatePackage>edu.uci.ics.asterix.event.schema.pattern</generatePackage>
129 <generateDirectory>${project.build.directory}/generated-sources/pattern</generateDirectory>
130 </configuration>
131 </execution>
132 </executions>
133 </plugin>
134 <plugin>
135 <artifactId>maven-assembly-plugin</artifactId>
136 <version>2.2-beta-2</version>
137 <executions>
138 <execution>
139 <configuration>
140 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
141 </configuration>
142 <phase>package</phase>
143 <goals>
144 <goal>attached</goal>
145 </goals>
146 </execution>
147 </executions>
148 </plugin>
149 </plugins>
150 </build>
ramangrover29b2201c42013-05-30 15:40:24 -0700151 <dependencies>
152 <dependency>
153 <groupId>junit</groupId>
154 <artifactId>junit</artifactId>
155 <version>4.8.1</version>
156 <scope>test</scope>
157 </dependency>
158 <dependency>
159 <groupId>args4j</groupId>
160 <artifactId>args4j</artifactId>
161 <version>2.0.12</version>
162 <type>jar</type>
163 <scope>compile</scope>
164 </dependency>
165 <dependency>
166 <groupId>org.jvnet.jaxb2_commons</groupId>
167 <artifactId>jaxb2-value-constructor</artifactId>
168 <version>3.0</version>
169 </dependency>
170 <dependency>
171 <groupId>commons-io</groupId>
172 <artifactId>commons-io</artifactId>
173 <version>1.4</version>
174 </dependency>
175 <dependency>
176 <groupId>org.apache.zookeeper</groupId>
177 <artifactId>zookeeper</artifactId>
178 <version>3.4.5</version>
179 <exclusions>
180 <exclusion>
181 <groupId>com.sun.jmx</groupId>
182 <artifactId>jmxri</artifactId>
183 </exclusion>
184 <exclusion>
185 <groupId>com.sun.jdmk</groupId>
186 <artifactId>jmxtools</artifactId>
187 </exclusion>
188 <exclusion>
189 <groupId>javax.jms</groupId>
190 <artifactId>jms</artifactId>
191 </exclusion>
192 </exclusions>
193 </dependency>
194 <dependency>
195 <groupId>edu.uci.ics.asterix</groupId>
196 <artifactId>asterix-common</artifactId>
ramangrover2974915662013-06-06 15:12:21 -0700197 <version>0.8.1-SNAPSHOT</version>
ramangrover29b2201c42013-05-30 15:40:24 -0700198 <type>jar</type>
199 <scope>compile</scope>
200 </dependency>
ramangrover2974915662013-06-06 15:12:21 -0700201 <dependency>
202 <groupId>log4j</groupId>
203 <artifactId>log4j</artifactId>
204 <version>1.2.9</version>
205 </dependency>
ramangrover29b2201c42013-05-30 15:40:24 -0700206 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000207</project>