blob: e20189acf811072560416870226a6e1d49f9f9db [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
Ian4a816dc2014-11-26 15:46:32 -080022 <licenses>
23 <license>
24 <name>Apache License, Version 2.0</name>
25 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
26 <distribution>repo</distribution>
27 <comments>A business-friendly OSS license</comments>
28 </license>
29 </licenses>
30
31
ramangrover29b2201c42013-05-30 15:40:24 -070032 <properties>
33 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000035
ramangrover29b2201c42013-05-30 15:40:24 -070036 <build>
37 <plugins>
38 <plugin>
39 <groupId>org.apache.maven.plugins</groupId>
40 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070041 <version>2.3.2</version>
ramangrover29b2201c42013-05-30 15:40:24 -070042 <configuration>
Till Westmann6212c902014-07-30 15:44:59 -070043 <source>1.7</source>
44 <target>1.7</target>
ramangrover29b2201c42013-05-30 15:40:24 -070045 </configuration>
46 </plugin>
47 <plugin>
48 <groupId>org.jvnet.jaxb2.maven2</groupId>
49 <artifactId>maven-jaxb2-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070050 <version>0.9.0</version>
ramangrover29b2201c42013-05-30 15:40:24 -070051 <executions>
52 <execution>
53 <id>event</id>
54 <goals>
55 <goal>generate</goal>
56 </goals>
57 <configuration>
58 <args>
59 <arg>-Xsetters</arg>
60 <arg>-Xvalue-constructor</arg>
61 </args>
62 <plugins>
63 <plugin>
64 <groupId>org.jvnet.jaxb2_commons</groupId>
65 <artifactId>jaxb2-basics</artifactId>
66 <version>0.6.2</version>
67 </plugin>
68 <plugin>
69 <groupId>org.jvnet.jaxb2_commons</groupId>
70 <artifactId>jaxb2-value-constructor</artifactId>
71 <version>3.0</version>
72 </plugin>
73 </plugins>
74 <schemaDirectory>src/main/resources/schema</schemaDirectory>
75 <schemaIncludes>
76 <include>event.xsd</include>
77 </schemaIncludes>
78 <generatePackage>edu.uci.ics.asterix.event.schema.event</generatePackage>
79 <generateDirectory>${project.build.directory}/generated-sources/event</generateDirectory>
80 </configuration>
81 </execution>
82 <execution>
83 <id>configuration</id>
84 <goals>
85 <goal>generate</goal>
86 </goals>
87 <configuration>
88 <args>
89 <arg>-Xsetters</arg>
90 <arg>-Xvalue-constructor</arg>
91 </args>
92 <plugins>
93 <plugin>
94 <groupId>org.jvnet.jaxb2_commons</groupId>
95 <artifactId>jaxb2-basics</artifactId>
96 <version>0.6.2</version>
97 </plugin>
98 <plugin>
99 <groupId>org.jvnet.jaxb2_commons</groupId>
100 <artifactId>jaxb2-value-constructor</artifactId>
101 <version>3.0</version>
102 </plugin>
103 </plugins>
104 <schemaDirectory>src/main/resources/schema</schemaDirectory>
105 <schemaIncludes>
106 <include>installer-conf.xsd</include>
107 </schemaIncludes>
108 <generatePackage>edu.uci.ics.asterix.installer.schema.conf</generatePackage>
109 <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory>
110 </configuration>
111 </execution>
112 <execution>
113 <id>pattern</id>
114 <goals>
115 <goal>generate</goal>
116 </goals>
117 <configuration>
118 <args>
119 <arg>-Xsetters</arg>
120 <arg>-Xvalue-constructor</arg>
121 </args>
122 <plugins>
123 <plugin>
124 <groupId>org.jvnet.jaxb2_commons</groupId>
125 <artifactId>jaxb2-basics</artifactId>
126 <version>0.6.2</version>
127 </plugin>
128 <plugin>
129 <groupId>org.jvnet.jaxb2_commons</groupId>
130 <artifactId>jaxb2-value-constructor</artifactId>
131 <version>3.0</version>
132 </plugin>
133 </plugins>
134 <schemaDirectory>src/main/resources/schema</schemaDirectory>
135 <schemaIncludes>
136 <include>pattern.xsd</include>
137 </schemaIncludes>
138 <generatePackage>edu.uci.ics.asterix.event.schema.pattern</generatePackage>
139 <generateDirectory>${project.build.directory}/generated-sources/pattern</generateDirectory>
140 </configuration>
141 </execution>
142 </executions>
143 </plugin>
144 <plugin>
145 <artifactId>maven-assembly-plugin</artifactId>
146 <version>2.2-beta-2</version>
147 <executions>
148 <execution>
149 <configuration>
150 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
151 </configuration>
152 <phase>package</phase>
153 <goals>
154 <goal>attached</goal>
155 </goals>
156 </execution>
157 </executions>
158 </plugin>
159 </plugins>
160 </build>
ramangrover29b2201c42013-05-30 15:40:24 -0700161 <dependencies>
162 <dependency>
ramangrover29b2201c42013-05-30 15:40:24 -0700163 <groupId>args4j</groupId>
164 <artifactId>args4j</artifactId>
165 <version>2.0.12</version>
166 <type>jar</type>
167 <scope>compile</scope>
168 </dependency>
169 <dependency>
170 <groupId>org.jvnet.jaxb2_commons</groupId>
171 <artifactId>jaxb2-value-constructor</artifactId>
172 <version>3.0</version>
173 </dependency>
174 <dependency>
175 <groupId>commons-io</groupId>
176 <artifactId>commons-io</artifactId>
ramangrover29b2201c42013-05-30 15:40:24 -0700177 </dependency>
178 <dependency>
179 <groupId>org.apache.zookeeper</groupId>
180 <artifactId>zookeeper</artifactId>
181 <version>3.4.5</version>
182 <exclusions>
183 <exclusion>
184 <groupId>com.sun.jmx</groupId>
185 <artifactId>jmxri</artifactId>
186 </exclusion>
187 <exclusion>
188 <groupId>com.sun.jdmk</groupId>
189 <artifactId>jmxtools</artifactId>
190 </exclusion>
191 <exclusion>
192 <groupId>javax.jms</groupId>
193 <artifactId>jms</artifactId>
194 </exclusion>
195 </exclusions>
196 </dependency>
197 <dependency>
198 <groupId>edu.uci.ics.asterix</groupId>
199 <artifactId>asterix-common</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700200 <version>0.8.7-SNAPSHOT</version>
ramangrover29b2201c42013-05-30 15:40:24 -0700201 <type>jar</type>
202 <scope>compile</scope>
203 </dependency>
ramangrover2974915662013-06-06 15:12:21 -0700204 <dependency>
205 <groupId>log4j</groupId>
206 <artifactId>log4j</artifactId>
207 <version>1.2.9</version>
208 </dependency>
ramangrover29b2201c42013-05-30 15:40:24 -0700209 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000210</project>