blob: 1aea29470165ed4d8715bf7095b02820b7aa4eb1 [file] [log] [blame]
Ian Maxon928bbd12015-09-14 17:12:48 -07001<!--
2 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
18 !-->
vinayakb5ee049d2013-04-06 21:21:29 +000019
Vinayak Borkar9cca81b2013-12-11 21:53:45 -080020<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 -070021 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <artifactId>asterix</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070024 <groupId>org.apache.asterix</groupId>
Ian Maxon4e6a9232015-10-05 12:46:37 -070025 <version>0.8.8-SNAPSHOT</version>
ramangrover29b2201c42013-05-30 15:40:24 -070026 </parent>
Ian Maxonf18bba22015-08-21 12:35:14 -070027 <groupId>org.apache.asterix</groupId>
ramangrover29b2201c42013-05-30 15:40:24 -070028 <artifactId>asterix-events</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -070029 <version>0.8.8-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +000030
Ian4a816dc2014-11-26 15:46:32 -080031 <licenses>
32 <license>
33 <name>Apache License, Version 2.0</name>
34 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
35 <distribution>repo</distribution>
36 <comments>A business-friendly OSS license</comments>
37 </license>
38 </licenses>
39
40
ramangrover29b2201c42013-05-30 15:40:24 -070041 <properties>
42 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
43 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000044
ramangrover29b2201c42013-05-30 15:40:24 -070045 <build>
46 <plugins>
47 <plugin>
ramangrover29b2201c42013-05-30 15:40:24 -070048 <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>
Ian Maxonf18bba22015-08-21 12:35:14 -070078 <generatePackage>org.apache.asterix.event.schema.event</generatePackage>
ramangrover29b2201c42013-05-30 15:40:24 -070079 <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>
Ian Maxonf18bba22015-08-21 12:35:14 -0700108 <generatePackage>org.apache.asterix.installer.schema.conf</generatePackage>
ramangrover29b2201c42013-05-30 15:40:24 -0700109 <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>
Ian Maxonf18bba22015-08-21 12:35:14 -0700138 <generatePackage>org.apache.asterix.event.schema.pattern</generatePackage>
ramangrover29b2201c42013-05-30 15:40:24 -0700139 <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>
Ian Maxonf18bba22015-08-21 12:35:14 -0700198 <groupId>org.apache.asterix</groupId>
ramangrover29b2201c42013-05-30 15:40:24 -0700199 <artifactId>asterix-common</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700200 <version>0.8.8-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>