Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 1 | <!-- |
| 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 | !--> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 19 | |
Vinayak Borkar | 9cca81b | 2013-12-11 21:53:45 -0800 | [diff] [blame] | 20 | <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"> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <artifactId>asterix</artifactId> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 24 | <groupId>org.apache.asterix</groupId> |
Ian Maxon | 12ab22c | 2015-09-30 18:20:18 -0700 | [diff] [blame^] | 25 | <version>0.8.8-SNAPSHOT</version> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 26 | </parent> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 27 | <groupId>org.apache.asterix</groupId> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 28 | <artifactId>asterix-events</artifactId> |
Ian Maxon | 12ab22c | 2015-09-30 18:20:18 -0700 | [diff] [blame^] | 29 | <version>0.8.8-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 30 | |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 31 | <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 | |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 41 | <properties> |
| 42 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 43 | </properties> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 44 | |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 45 | <build> |
| 46 | <plugins> |
| 47 | <plugin> |
| 48 | <groupId>org.apache.maven.plugins</groupId> |
| 49 | <artifactId>maven-compiler-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 50 | <version>2.3.2</version> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 51 | <configuration> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 52 | <source>1.7</source> |
| 53 | <target>1.7</target> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 54 | </configuration> |
| 55 | </plugin> |
| 56 | <plugin> |
| 57 | <groupId>org.jvnet.jaxb2.maven2</groupId> |
| 58 | <artifactId>maven-jaxb2-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 59 | <version>0.9.0</version> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 60 | <executions> |
| 61 | <execution> |
| 62 | <id>event</id> |
| 63 | <goals> |
| 64 | <goal>generate</goal> |
| 65 | </goals> |
| 66 | <configuration> |
| 67 | <args> |
| 68 | <arg>-Xsetters</arg> |
| 69 | <arg>-Xvalue-constructor</arg> |
| 70 | </args> |
| 71 | <plugins> |
| 72 | <plugin> |
| 73 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 74 | <artifactId>jaxb2-basics</artifactId> |
| 75 | <version>0.6.2</version> |
| 76 | </plugin> |
| 77 | <plugin> |
| 78 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 79 | <artifactId>jaxb2-value-constructor</artifactId> |
| 80 | <version>3.0</version> |
| 81 | </plugin> |
| 82 | </plugins> |
| 83 | <schemaDirectory>src/main/resources/schema</schemaDirectory> |
| 84 | <schemaIncludes> |
| 85 | <include>event.xsd</include> |
| 86 | </schemaIncludes> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 87 | <generatePackage>org.apache.asterix.event.schema.event</generatePackage> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 88 | <generateDirectory>${project.build.directory}/generated-sources/event</generateDirectory> |
| 89 | </configuration> |
| 90 | </execution> |
| 91 | <execution> |
| 92 | <id>configuration</id> |
| 93 | <goals> |
| 94 | <goal>generate</goal> |
| 95 | </goals> |
| 96 | <configuration> |
| 97 | <args> |
| 98 | <arg>-Xsetters</arg> |
| 99 | <arg>-Xvalue-constructor</arg> |
| 100 | </args> |
| 101 | <plugins> |
| 102 | <plugin> |
| 103 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 104 | <artifactId>jaxb2-basics</artifactId> |
| 105 | <version>0.6.2</version> |
| 106 | </plugin> |
| 107 | <plugin> |
| 108 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 109 | <artifactId>jaxb2-value-constructor</artifactId> |
| 110 | <version>3.0</version> |
| 111 | </plugin> |
| 112 | </plugins> |
| 113 | <schemaDirectory>src/main/resources/schema</schemaDirectory> |
| 114 | <schemaIncludes> |
| 115 | <include>installer-conf.xsd</include> |
| 116 | </schemaIncludes> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 117 | <generatePackage>org.apache.asterix.installer.schema.conf</generatePackage> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 118 | <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory> |
| 119 | </configuration> |
| 120 | </execution> |
| 121 | <execution> |
| 122 | <id>pattern</id> |
| 123 | <goals> |
| 124 | <goal>generate</goal> |
| 125 | </goals> |
| 126 | <configuration> |
| 127 | <args> |
| 128 | <arg>-Xsetters</arg> |
| 129 | <arg>-Xvalue-constructor</arg> |
| 130 | </args> |
| 131 | <plugins> |
| 132 | <plugin> |
| 133 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 134 | <artifactId>jaxb2-basics</artifactId> |
| 135 | <version>0.6.2</version> |
| 136 | </plugin> |
| 137 | <plugin> |
| 138 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 139 | <artifactId>jaxb2-value-constructor</artifactId> |
| 140 | <version>3.0</version> |
| 141 | </plugin> |
| 142 | </plugins> |
| 143 | <schemaDirectory>src/main/resources/schema</schemaDirectory> |
| 144 | <schemaIncludes> |
| 145 | <include>pattern.xsd</include> |
| 146 | </schemaIncludes> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 147 | <generatePackage>org.apache.asterix.event.schema.pattern</generatePackage> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 148 | <generateDirectory>${project.build.directory}/generated-sources/pattern</generateDirectory> |
| 149 | </configuration> |
| 150 | </execution> |
| 151 | </executions> |
| 152 | </plugin> |
| 153 | <plugin> |
| 154 | <artifactId>maven-assembly-plugin</artifactId> |
| 155 | <version>2.2-beta-2</version> |
| 156 | <executions> |
| 157 | <execution> |
| 158 | <configuration> |
| 159 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 160 | </configuration> |
| 161 | <phase>package</phase> |
| 162 | <goals> |
| 163 | <goal>attached</goal> |
| 164 | </goals> |
| 165 | </execution> |
| 166 | </executions> |
| 167 | </plugin> |
| 168 | </plugins> |
| 169 | </build> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 170 | <dependencies> |
| 171 | <dependency> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 172 | <groupId>args4j</groupId> |
| 173 | <artifactId>args4j</artifactId> |
| 174 | <version>2.0.12</version> |
| 175 | <type>jar</type> |
| 176 | <scope>compile</scope> |
| 177 | </dependency> |
| 178 | <dependency> |
| 179 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 180 | <artifactId>jaxb2-value-constructor</artifactId> |
| 181 | <version>3.0</version> |
| 182 | </dependency> |
| 183 | <dependency> |
| 184 | <groupId>commons-io</groupId> |
| 185 | <artifactId>commons-io</artifactId> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 186 | </dependency> |
| 187 | <dependency> |
| 188 | <groupId>org.apache.zookeeper</groupId> |
| 189 | <artifactId>zookeeper</artifactId> |
| 190 | <version>3.4.5</version> |
| 191 | <exclusions> |
| 192 | <exclusion> |
| 193 | <groupId>com.sun.jmx</groupId> |
| 194 | <artifactId>jmxri</artifactId> |
| 195 | </exclusion> |
| 196 | <exclusion> |
| 197 | <groupId>com.sun.jdmk</groupId> |
| 198 | <artifactId>jmxtools</artifactId> |
| 199 | </exclusion> |
| 200 | <exclusion> |
| 201 | <groupId>javax.jms</groupId> |
| 202 | <artifactId>jms</artifactId> |
| 203 | </exclusion> |
| 204 | </exclusions> |
| 205 | </dependency> |
| 206 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 207 | <groupId>org.apache.asterix</groupId> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 208 | <artifactId>asterix-common</artifactId> |
Ian Maxon | 12ab22c | 2015-09-30 18:20:18 -0700 | [diff] [blame^] | 209 | <version>0.8.8-SNAPSHOT</version> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 210 | <type>jar</type> |
| 211 | <scope>compile</scope> |
| 212 | </dependency> |
ramangrover29 | 7491566 | 2013-06-06 15:12:21 -0700 | [diff] [blame] | 213 | <dependency> |
| 214 | <groupId>log4j</groupId> |
| 215 | <artifactId>log4j</artifactId> |
| 216 | <version>1.2.9</version> |
| 217 | </dependency> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 218 | </dependencies> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 219 | </project> |