ramangrover29 | 7491566 | 2013-06-06 15:12:21 -0700 | [diff] [blame] | 1 | <!-- ! 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. ! --> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 10 | |
Vinayak Borkar | 9cca81b | 2013-12-11 21:53:45 -0800 | [diff] [blame] | 11 | <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] | 12 | <modelVersion>4.0.0</modelVersion> |
| 13 | <parent> |
| 14 | <artifactId>asterix</artifactId> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame^] | 15 | <groupId>org.apache.asterix</groupId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 16 | <version>0.8.7-SNAPSHOT</version> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 17 | </parent> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame^] | 18 | <groupId>org.apache.asterix</groupId> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 19 | <artifactId>asterix-events</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 20 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 21 | |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 22 | <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 | |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 32 | <properties> |
| 33 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 34 | </properties> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 35 | |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 36 | <build> |
| 37 | <plugins> |
| 38 | <plugin> |
| 39 | <groupId>org.apache.maven.plugins</groupId> |
| 40 | <artifactId>maven-compiler-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 41 | <version>2.3.2</version> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 42 | <configuration> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 43 | <source>1.7</source> |
| 44 | <target>1.7</target> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 45 | </configuration> |
| 46 | </plugin> |
| 47 | <plugin> |
| 48 | <groupId>org.jvnet.jaxb2.maven2</groupId> |
| 49 | <artifactId>maven-jaxb2-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 50 | <version>0.9.0</version> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 51 | <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 Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame^] | 78 | <generatePackage>org.apache.asterix.event.schema.event</generatePackage> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 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> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame^] | 108 | <generatePackage>org.apache.asterix.installer.schema.conf</generatePackage> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 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> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame^] | 138 | <generatePackage>org.apache.asterix.event.schema.pattern</generatePackage> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 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> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 161 | <dependencies> |
| 162 | <dependency> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 163 | <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> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 177 | </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 Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame^] | 198 | <groupId>org.apache.asterix</groupId> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 199 | <artifactId>asterix-common</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 200 | <version>0.8.7-SNAPSHOT</version> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 201 | <type>jar</type> |
| 202 | <scope>compile</scope> |
| 203 | </dependency> |
ramangrover29 | 7491566 | 2013-06-06 15:12:21 -0700 | [diff] [blame] | 204 | <dependency> |
| 205 | <groupId>log4j</groupId> |
| 206 | <artifactId>log4j</artifactId> |
| 207 | <version>1.2.9</version> |
| 208 | </dependency> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 209 | </dependencies> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 210 | </project> |