blob: fd5b4764a7036a4a8db141fbcd6a5ff944de34aa [file] [log] [blame]
ramangrover2974915662013-06-06 15:12:21 -07001<!-- ! 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. ! -->
vinayakb5ee049d2013-04-06 21:21:29 +000010
Vinayak Borkar9cca81b2013-12-11 21:53:45 -080011<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 -070012 <modelVersion>4.0.0</modelVersion>
13 <parent>
14 <artifactId>asterix</artifactId>
15 <groupId>edu.uci.ics.asterix</groupId>
Vinayak Borkar9cca81b2013-12-11 21:53:45 -080016 <version>0.8.1</version>
ramangrover29b2201c42013-05-30 15:40:24 -070017 </parent>
18 <groupId>edu.uci.ics.asterix</groupId>
19 <artifactId>asterix-events</artifactId>
Vinayak Borkar9cca81b2013-12-11 21:53:45 -080020 <version>0.8.1</version>
vinayakb5ee049d2013-04-06 21:21:29 +000021
ramangrover29b2201c42013-05-30 15:40:24 -070022 <properties>
23 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
24 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000025
ramangrover29b2201c42013-05-30 15:40:24 -070026 <build>
27 <plugins>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-compiler-plugin</artifactId>
31 <version>2.0.2</version>
32 <configuration>
33 <source>1.6</source>
34 <target>1.6</target>
35 </configuration>
36 </plugin>
37 <plugin>
38 <groupId>org.jvnet.jaxb2.maven2</groupId>
39 <artifactId>maven-jaxb2-plugin</artifactId>
40 <executions>
41 <execution>
42 <id>event</id>
43 <goals>
44 <goal>generate</goal>
45 </goals>
46 <configuration>
47 <args>
48 <arg>-Xsetters</arg>
49 <arg>-Xvalue-constructor</arg>
50 </args>
51 <plugins>
52 <plugin>
53 <groupId>org.jvnet.jaxb2_commons</groupId>
54 <artifactId>jaxb2-basics</artifactId>
55 <version>0.6.2</version>
56 </plugin>
57 <plugin>
58 <groupId>org.jvnet.jaxb2_commons</groupId>
59 <artifactId>jaxb2-value-constructor</artifactId>
60 <version>3.0</version>
61 </plugin>
62 </plugins>
63 <schemaDirectory>src/main/resources/schema</schemaDirectory>
64 <schemaIncludes>
65 <include>event.xsd</include>
66 </schemaIncludes>
67 <generatePackage>edu.uci.ics.asterix.event.schema.event</generatePackage>
68 <generateDirectory>${project.build.directory}/generated-sources/event</generateDirectory>
69 </configuration>
70 </execution>
71 <execution>
72 <id>configuration</id>
73 <goals>
74 <goal>generate</goal>
75 </goals>
76 <configuration>
77 <args>
78 <arg>-Xsetters</arg>
79 <arg>-Xvalue-constructor</arg>
80 </args>
81 <plugins>
82 <plugin>
83 <groupId>org.jvnet.jaxb2_commons</groupId>
84 <artifactId>jaxb2-basics</artifactId>
85 <version>0.6.2</version>
86 </plugin>
87 <plugin>
88 <groupId>org.jvnet.jaxb2_commons</groupId>
89 <artifactId>jaxb2-value-constructor</artifactId>
90 <version>3.0</version>
91 </plugin>
92 </plugins>
93 <schemaDirectory>src/main/resources/schema</schemaDirectory>
94 <schemaIncludes>
95 <include>installer-conf.xsd</include>
96 </schemaIncludes>
97 <generatePackage>edu.uci.ics.asterix.installer.schema.conf</generatePackage>
98 <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory>
99 </configuration>
100 </execution>
101 <execution>
102 <id>pattern</id>
103 <goals>
104 <goal>generate</goal>
105 </goals>
106 <configuration>
107 <args>
108 <arg>-Xsetters</arg>
109 <arg>-Xvalue-constructor</arg>
110 </args>
111 <plugins>
112 <plugin>
113 <groupId>org.jvnet.jaxb2_commons</groupId>
114 <artifactId>jaxb2-basics</artifactId>
115 <version>0.6.2</version>
116 </plugin>
117 <plugin>
118 <groupId>org.jvnet.jaxb2_commons</groupId>
119 <artifactId>jaxb2-value-constructor</artifactId>
120 <version>3.0</version>
121 </plugin>
122 </plugins>
123 <schemaDirectory>src/main/resources/schema</schemaDirectory>
124 <schemaIncludes>
125 <include>pattern.xsd</include>
126 </schemaIncludes>
127 <generatePackage>edu.uci.ics.asterix.event.schema.pattern</generatePackage>
128 <generateDirectory>${project.build.directory}/generated-sources/pattern</generateDirectory>
129 </configuration>
130 </execution>
131 </executions>
132 </plugin>
133 <plugin>
134 <artifactId>maven-assembly-plugin</artifactId>
135 <version>2.2-beta-2</version>
136 <executions>
137 <execution>
138 <configuration>
139 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
140 </configuration>
141 <phase>package</phase>
142 <goals>
143 <goal>attached</goal>
144 </goals>
145 </execution>
146 </executions>
147 </plugin>
148 </plugins>
149 </build>
ramangrover29b2201c42013-05-30 15:40:24 -0700150 <dependencies>
151 <dependency>
152 <groupId>junit</groupId>
153 <artifactId>junit</artifactId>
154 <version>4.8.1</version>
155 <scope>test</scope>
156 </dependency>
157 <dependency>
158 <groupId>args4j</groupId>
159 <artifactId>args4j</artifactId>
160 <version>2.0.12</version>
161 <type>jar</type>
162 <scope>compile</scope>
163 </dependency>
164 <dependency>
165 <groupId>org.jvnet.jaxb2_commons</groupId>
166 <artifactId>jaxb2-value-constructor</artifactId>
167 <version>3.0</version>
168 </dependency>
169 <dependency>
170 <groupId>commons-io</groupId>
171 <artifactId>commons-io</artifactId>
172 <version>1.4</version>
173 </dependency>
174 <dependency>
175 <groupId>org.apache.zookeeper</groupId>
176 <artifactId>zookeeper</artifactId>
177 <version>3.4.5</version>
178 <exclusions>
179 <exclusion>
180 <groupId>com.sun.jmx</groupId>
181 <artifactId>jmxri</artifactId>
182 </exclusion>
183 <exclusion>
184 <groupId>com.sun.jdmk</groupId>
185 <artifactId>jmxtools</artifactId>
186 </exclusion>
187 <exclusion>
188 <groupId>javax.jms</groupId>
189 <artifactId>jms</artifactId>
190 </exclusion>
191 </exclusions>
192 </dependency>
193 <dependency>
194 <groupId>edu.uci.ics.asterix</groupId>
195 <artifactId>asterix-common</artifactId>
Vinayak Borkar9cca81b2013-12-11 21:53:45 -0800196 <version>0.8.1</version>
ramangrover29b2201c42013-05-30 15:40:24 -0700197 <type>jar</type>
198 <scope>compile</scope>
199 </dependency>
ramangrover2974915662013-06-06 15:12:21 -0700200 <dependency>
201 <groupId>log4j</groupId>
202 <artifactId>log4j</artifactId>
203 <version>1.2.9</version>
204 </dependency>
ramangrover29b2201c42013-05-30 15:40:24 -0700205 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000206</project>