Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ! Copyright 2009-2013 by The Regents of the University of California |
| 3 | ! Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | ! you may not use this file except in compliance with the License. |
| 5 | ! you may obtain a copy of the License from |
| 6 | ! |
| 7 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | ! |
| 9 | ! Unless required by applicable law or agreed to in writing, software |
| 10 | ! distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | ! See the License for the specific language governing permissions and |
| 13 | ! limitations under the License. |
| 14 | !--> |
vinayakb | 8a1a718 | 2013-04-07 01:45:00 +0000 | [diff] [blame] | 15 | <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"> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 16 | <modelVersion>4.0.0</modelVersion> |
| 17 | <parent> |
| 18 | <artifactId>asterix</artifactId> |
| 19 | <groupId>edu.uci.ics.asterix</groupId> |
Vinayak Borkar | 726f392 | 2013-04-25 14:32:21 -0700 | [diff] [blame] | 20 | <version>0.0.6-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 21 | </parent> |
| 22 | <groupId>edu.uci.ics.asterix</groupId> |
| 23 | <artifactId>asterix-events</artifactId> |
Vinayak Borkar | 726f392 | 2013-04-25 14:32:21 -0700 | [diff] [blame] | 24 | <version>0.0.6-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 25 | |
| 26 | <properties> |
| 27 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 28 | </properties> |
| 29 | |
| 30 | <build> |
| 31 | <plugins> |
| 32 | <plugin> |
| 33 | <groupId>org.apache.maven.plugins</groupId> |
| 34 | <artifactId>maven-compiler-plugin</artifactId> |
| 35 | <version>2.0.2</version> |
| 36 | <configuration> |
| 37 | <source>1.6</source> |
| 38 | <target>1.6</target> |
| 39 | </configuration> |
| 40 | </plugin> |
| 41 | <plugin> |
| 42 | <groupId>org.jvnet.jaxb2.maven2</groupId> |
| 43 | <artifactId>maven-jaxb2-plugin</artifactId> |
| 44 | <executions> |
| 45 | <execution> |
| 46 | <id>event</id> |
| 47 | <goals> |
| 48 | <goal>generate</goal> |
| 49 | </goals> |
| 50 | <configuration> |
| 51 | <args> |
| 52 | <arg>-Xsetters</arg> |
| 53 | <arg>-Xvalue-constructor</arg> |
| 54 | </args> |
| 55 | <plugins> |
| 56 | <plugin> |
| 57 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 58 | <artifactId>jaxb2-basics</artifactId> |
| 59 | <version>0.6.2</version> |
| 60 | </plugin> |
| 61 | <plugin> |
| 62 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 63 | <artifactId>jaxb2-value-constructor</artifactId> |
| 64 | <version>3.0</version> |
| 65 | </plugin> |
| 66 | </plugins> |
| 67 | <schemaDirectory>src/main/resources/schema</schemaDirectory> |
| 68 | <schemaIncludes> |
| 69 | <include>event.xsd</include> |
| 70 | </schemaIncludes> |
| 71 | <generatePackage>edu.uci.ics.asterix.event.schema.event</generatePackage> |
| 72 | <generateDirectory>${project.build.directory}/generated-sources/event</generateDirectory> |
| 73 | </configuration> |
| 74 | </execution> |
| 75 | <execution> |
| 76 | <id>pattern</id> |
| 77 | <goals> |
| 78 | <goal>generate</goal> |
| 79 | </goals> |
| 80 | <configuration> |
| 81 | <args> |
| 82 | <arg>-Xsetters</arg> |
| 83 | <arg>-Xvalue-constructor</arg> |
| 84 | </args> |
| 85 | <plugins> |
| 86 | <plugin> |
| 87 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 88 | <artifactId>jaxb2-basics</artifactId> |
| 89 | <version>0.6.2</version> |
| 90 | </plugin> |
| 91 | <plugin> |
| 92 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 93 | <artifactId>jaxb2-value-constructor</artifactId> |
| 94 | <version>3.0</version> |
| 95 | </plugin> |
| 96 | </plugins> |
| 97 | <schemaDirectory>src/main/resources/schema</schemaDirectory> |
| 98 | <schemaIncludes> |
| 99 | <include>pattern.xsd</include> |
| 100 | </schemaIncludes> |
| 101 | <generatePackage>edu.uci.ics.asterix.event.schema.pattern</generatePackage> |
| 102 | <generateDirectory>${project.build.directory}/generated-sources/pattern</generateDirectory> |
| 103 | </configuration> |
| 104 | </execution> |
| 105 | <execution> |
| 106 | <id>cluster</id> |
| 107 | <goals> |
| 108 | <goal>generate</goal> |
| 109 | </goals> |
| 110 | <configuration> |
| 111 | <args> |
| 112 | <arg>-Xsetters</arg> |
| 113 | <arg>-Xvalue-constructor</arg> |
| 114 | </args> |
| 115 | <plugins> |
| 116 | <plugin> |
| 117 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 118 | <artifactId>jaxb2-basics</artifactId> |
| 119 | <version>0.6.2</version> |
| 120 | </plugin> |
| 121 | <plugin> |
| 122 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 123 | <artifactId>jaxb2-value-constructor</artifactId> |
| 124 | <version>3.0</version> |
| 125 | </plugin> |
| 126 | </plugins> |
| 127 | <schemaDirectory>src/main/resources/schema</schemaDirectory> |
| 128 | <schemaIncludes> |
| 129 | <include>cluster.xsd</include> |
| 130 | </schemaIncludes> |
| 131 | <generatePackage>edu.uci.ics.asterix.event.schema.cluster</generatePackage> |
| 132 | <generateDirectory>${project.build.directory}/generated-sources/cluster</generateDirectory> |
| 133 | <bindingDirectory>src/main/resources/schema</bindingDirectory> |
| 134 | <bindingIncludes> |
| 135 | <bindingInclude>jaxb-bindings.xjb</bindingInclude> |
| 136 | </bindingIncludes> |
| 137 | </configuration> |
| 138 | </execution> |
| 139 | </executions> |
| 140 | </plugin> |
| 141 | <plugin> |
| 142 | <artifactId>maven-assembly-plugin</artifactId> |
| 143 | <version>2.2-beta-2</version> |
| 144 | <executions> |
| 145 | <execution> |
| 146 | <configuration> |
| 147 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 148 | </configuration> |
| 149 | <phase>package</phase> |
| 150 | <goals> |
| 151 | <goal>attached</goal> |
| 152 | </goals> |
| 153 | </execution> |
| 154 | </executions> |
| 155 | </plugin> |
| 156 | </plugins> |
| 157 | </build> |
| 158 | |
| 159 | <dependencies> |
| 160 | <dependency> |
| 161 | <groupId>junit</groupId> |
| 162 | <artifactId>junit</artifactId> |
| 163 | <version>4.8.1</version> |
| 164 | <scope>test</scope> |
| 165 | </dependency> |
| 166 | <dependency> |
| 167 | <groupId>args4j</groupId> |
| 168 | <artifactId>args4j</artifactId> |
| 169 | <version>2.0.12</version> |
| 170 | <type>jar</type> |
| 171 | <scope>compile</scope> |
| 172 | </dependency> |
| 173 | <dependency> |
| 174 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 175 | <artifactId>jaxb2-value-constructor</artifactId> |
| 176 | <version>3.0</version> |
| 177 | </dependency> |
| 178 | <dependency> |
| 179 | <groupId>commons-io</groupId> |
| 180 | <artifactId>commons-io</artifactId> |
| 181 | <version>1.4</version> |
| 182 | </dependency> |
Raman Grover | 8ce5e19 | 2013-05-09 16:01:08 -0700 | [diff] [blame] | 183 | <dependency> |
| 184 | <groupId>edu.uci.ics.asterix</groupId> |
| 185 | <artifactId>asterix-common</artifactId> |
| 186 | <version>0.0.6-SNAPSHOT</version> |
| 187 | <type>jar</type> |
| 188 | <scope>compile</scope> |
| 189 | </dependency> |
Vinayak Borkar | 3a43223 | 2013-05-31 11:47:58 -0700 | [diff] [blame] | 190 | <dependency> |
| 191 | <groupId>log4j</groupId> |
| 192 | <artifactId>log4j</artifactId> |
| 193 | <version>1.2.9</version> |
| 194 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 195 | </dependencies> |
| 196 | </project> |