blob: 023800ba6a7cf0795066c9ef643595265ad841d2 [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>
Ian Maxonab556d12016-02-02 18:18:05 -080023 <artifactId>apache-asterixdb</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070024 <groupId>org.apache.asterix</groupId>
Ian Maxonc1889c02016-02-10 15:26:24 -080025 <version>0.8.9-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 Maxonc1889c02016-02-10 15:26:24 -080029 <version>0.8.9-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
ramangrover29b2201c42013-05-30 15:40:24 -070040 <properties>
41 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Ian Maxon6e5f18e2015-11-24 18:02:48 -080042 <appendedResourcesDirectory>${basedir}/../src/main/appended-resources</appendedResourcesDirectory>
ramangrover29b2201c42013-05-30 15:40:24 -070043 </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>
ramangrover29b2201c42013-05-30 15:40:24 -0700144 </plugins>
145 </build>
ramangrover29b2201c42013-05-30 15:40:24 -0700146 <dependencies>
147 <dependency>
ramangrover29b2201c42013-05-30 15:40:24 -0700148 <groupId>args4j</groupId>
149 <artifactId>args4j</artifactId>
150 <version>2.0.12</version>
151 <type>jar</type>
152 <scope>compile</scope>
153 </dependency>
154 <dependency>
155 <groupId>org.jvnet.jaxb2_commons</groupId>
156 <artifactId>jaxb2-value-constructor</artifactId>
157 <version>3.0</version>
158 </dependency>
159 <dependency>
160 <groupId>commons-io</groupId>
161 <artifactId>commons-io</artifactId>
ramangrover29b2201c42013-05-30 15:40:24 -0700162 </dependency>
163 <dependency>
164 <groupId>org.apache.zookeeper</groupId>
165 <artifactId>zookeeper</artifactId>
166 <version>3.4.5</version>
167 <exclusions>
168 <exclusion>
169 <groupId>com.sun.jmx</groupId>
170 <artifactId>jmxri</artifactId>
171 </exclusion>
172 <exclusion>
173 <groupId>com.sun.jdmk</groupId>
174 <artifactId>jmxtools</artifactId>
175 </exclusion>
176 <exclusion>
177 <groupId>javax.jms</groupId>
178 <artifactId>jms</artifactId>
179 </exclusion>
180 </exclusions>
181 </dependency>
182 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700183 <groupId>org.apache.asterix</groupId>
ramangrover29b2201c42013-05-30 15:40:24 -0700184 <artifactId>asterix-common</artifactId>
Ian Maxonc1889c02016-02-10 15:26:24 -0800185 <version>0.8.9-SNAPSHOT</version>
ramangrover29b2201c42013-05-30 15:40:24 -0700186 <type>jar</type>
187 <scope>compile</scope>
188 </dependency>
ramangrover2974915662013-06-06 15:12:21 -0700189 <dependency>
190 <groupId>log4j</groupId>
191 <artifactId>log4j</artifactId>
192 <version>1.2.9</version>
193 </dependency>
ramangrover29b2201c42013-05-30 15:40:24 -0700194 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000195</project>