blob: 42fef890cfb28efca6904731f8f55ba8b0d6239e [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001<!--
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 !-->
vinayakb8a1a7182013-04-07 01:45:00 +000015<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">
vinayakb5ee049d2013-04-06 21:21:29 +000016 <modelVersion>4.0.0</modelVersion>
17 <parent>
18 <artifactId>asterix</artifactId>
19 <groupId>edu.uci.ics.asterix</groupId>
Vinayak Borkar726f3922013-04-25 14:32:21 -070020 <version>0.0.6-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +000021 </parent>
22 <groupId>edu.uci.ics.asterix</groupId>
23 <artifactId>asterix-events</artifactId>
Vinayak Borkar726f3922013-04-25 14:32:21 -070024 <version>0.0.6-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +000025
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 Grover8ce5e192013-05-09 16:01:08 -0700183 <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 Borkar3a432232013-05-31 11:47:58 -0700190 <dependency>
191 <groupId>log4j</groupId>
192 <artifactId>log4j</artifactId>
193 <version>1.2.9</version>
194 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000195 </dependencies>
196</project>