blob: 300646e6d907099647b22f1689f0219a3d642068 [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
Vinayak Borkar9cca81b2013-12-11 21:53:45 -080011<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">
ramangrover29b2201c42013-05-30 15:40:24 -070012 <modelVersion>4.0.0</modelVersion>
13 <parent>
14 <artifactId>asterix</artifactId>
15 <groupId>edu.uci.ics.asterix</groupId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070016 <version>0.8.7-SNAPSHOT</version>
ramangrover29b2201c42013-05-30 15:40:24 -070017 </parent>
18 <groupId>edu.uci.ics.asterix</groupId>
19 <artifactId>asterix-events</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070020 <version>0.8.7-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +000021
ramangrover29b2201c42013-05-30 15:40:24 -070022 <properties>
23 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
24 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000025
ramangrover29b2201c42013-05-30 15:40:24 -070026 <build>
27 <plugins>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-compiler-plugin</artifactId>
31 <version>2.0.2</version>
32 <configuration>
33 <source>1.6</source>
34 <target>1.6</target>
35 </configuration>
36 </plugin>
37 <plugin>
38 <groupId>org.jvnet.jaxb2.maven2</groupId>
39 <artifactId>maven-jaxb2-plugin</artifactId>
40 <executions>
41 <execution>
42 <id>event</id>
43 <goals>
44 <goal>generate</goal>
45 </goals>
46 <configuration>
47 <args>
48 <arg>-Xsetters</arg>
49 <arg>-Xvalue-constructor</arg>
50 </args>
51 <plugins>
52 <plugin>
53 <groupId>org.jvnet.jaxb2_commons</groupId>
54 <artifactId>jaxb2-basics</artifactId>
55 <version>0.6.2</version>
56 </plugin>
57 <plugin>
58 <groupId>org.jvnet.jaxb2_commons</groupId>
59 <artifactId>jaxb2-value-constructor</artifactId>
60 <version>3.0</version>
61 </plugin>
62 </plugins>
63 <schemaDirectory>src/main/resources/schema</schemaDirectory>
64 <schemaIncludes>
65 <include>event.xsd</include>
66 </schemaIncludes>
67 <generatePackage>edu.uci.ics.asterix.event.schema.event</generatePackage>
68 <generateDirectory>${project.build.directory}/generated-sources/event</generateDirectory>
69 </configuration>
70 </execution>
71 <execution>
72 <id>configuration</id>
73 <goals>
74 <goal>generate</goal>
75 </goals>
76 <configuration>
77 <args>
78 <arg>-Xsetters</arg>
79 <arg>-Xvalue-constructor</arg>
80 </args>
81 <plugins>
82 <plugin>
83 <groupId>org.jvnet.jaxb2_commons</groupId>
84 <artifactId>jaxb2-basics</artifactId>
85 <version>0.6.2</version>
86 </plugin>
87 <plugin>
88 <groupId>org.jvnet.jaxb2_commons</groupId>
89 <artifactId>jaxb2-value-constructor</artifactId>
90 <version>3.0</version>
91 </plugin>
92 </plugins>
93 <schemaDirectory>src/main/resources/schema</schemaDirectory>
94 <schemaIncludes>
95 <include>installer-conf.xsd</include>
96 </schemaIncludes>
97 <generatePackage>edu.uci.ics.asterix.installer.schema.conf</generatePackage>
98 <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory>
99 </configuration>
100 </execution>
101 <execution>
102 <id>pattern</id>
103 <goals>
104 <goal>generate</goal>
105 </goals>
106 <configuration>
107 <args>
108 <arg>-Xsetters</arg>
109 <arg>-Xvalue-constructor</arg>
110 </args>
111 <plugins>
112 <plugin>
113 <groupId>org.jvnet.jaxb2_commons</groupId>
114 <artifactId>jaxb2-basics</artifactId>
115 <version>0.6.2</version>
116 </plugin>
117 <plugin>
118 <groupId>org.jvnet.jaxb2_commons</groupId>
119 <artifactId>jaxb2-value-constructor</artifactId>
120 <version>3.0</version>
121 </plugin>
122 </plugins>
123 <schemaDirectory>src/main/resources/schema</schemaDirectory>
124 <schemaIncludes>
125 <include>pattern.xsd</include>
126 </schemaIncludes>
127 <generatePackage>edu.uci.ics.asterix.event.schema.pattern</generatePackage>
128 <generateDirectory>${project.build.directory}/generated-sources/pattern</generateDirectory>
129 </configuration>
130 </execution>
131 </executions>
132 </plugin>
133 <plugin>
134 <artifactId>maven-assembly-plugin</artifactId>
135 <version>2.2-beta-2</version>
136 <executions>
137 <execution>
138 <configuration>
139 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
140 </configuration>
141 <phase>package</phase>
142 <goals>
143 <goal>attached</goal>
144 </goals>
145 </execution>
146 </executions>
147 </plugin>
148 </plugins>
149 </build>
ramangrover29b2201c42013-05-30 15:40:24 -0700150 <dependencies>
151 <dependency>
ramangrover29b2201c42013-05-30 15:40:24 -0700152 <groupId>args4j</groupId>
153 <artifactId>args4j</artifactId>
154 <version>2.0.12</version>
155 <type>jar</type>
156 <scope>compile</scope>
157 </dependency>
158 <dependency>
159 <groupId>org.jvnet.jaxb2_commons</groupId>
160 <artifactId>jaxb2-value-constructor</artifactId>
161 <version>3.0</version>
162 </dependency>
163 <dependency>
164 <groupId>commons-io</groupId>
165 <artifactId>commons-io</artifactId>
166 <version>1.4</version>
167 </dependency>
168 <dependency>
169 <groupId>org.apache.zookeeper</groupId>
170 <artifactId>zookeeper</artifactId>
171 <version>3.4.5</version>
172 <exclusions>
173 <exclusion>
174 <groupId>com.sun.jmx</groupId>
175 <artifactId>jmxri</artifactId>
176 </exclusion>
177 <exclusion>
178 <groupId>com.sun.jdmk</groupId>
179 <artifactId>jmxtools</artifactId>
180 </exclusion>
181 <exclusion>
182 <groupId>javax.jms</groupId>
183 <artifactId>jms</artifactId>
184 </exclusion>
185 </exclusions>
186 </dependency>
187 <dependency>
188 <groupId>edu.uci.ics.asterix</groupId>
189 <artifactId>asterix-common</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700190 <version>0.8.7-SNAPSHOT</version>
ramangrover29b2201c42013-05-30 15:40:24 -0700191 <type>jar</type>
192 <scope>compile</scope>
193 </dependency>
ramangrover2974915662013-06-06 15:12:21 -0700194 <dependency>
195 <groupId>log4j</groupId>
196 <artifactId>log4j</artifactId>
197 <version>1.2.9</version>
198 </dependency>
ramangrover29b2201c42013-05-30 15:40:24 -0700199 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000200</project>