blob: 6f74809d2f1488789eef451ef40677caf2c6c1eb [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>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070016 <version>0.8.7-SNAPSHOT</version>
ramangrover29b2201c42013-05-30 15:40:24 -070017 </parent>
18 <groupId>edu.uci.ics.asterix</groupId>
19 <artifactId>asterix-events</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070020 <version>0.8.7-SNAPSHOT</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>
Till Westmann6212c902014-07-30 15:44:59 -070031 <version>2.3.2</version>
ramangrover29b2201c42013-05-30 15:40:24 -070032 <configuration>
Till Westmann6212c902014-07-30 15:44:59 -070033 <source>1.7</source>
34 <target>1.7</target>
ramangrover29b2201c42013-05-30 15:40:24 -070035 </configuration>
36 </plugin>
37 <plugin>
38 <groupId>org.jvnet.jaxb2.maven2</groupId>
39 <artifactId>maven-jaxb2-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070040 <version>0.9.0</version>
ramangrover29b2201c42013-05-30 15:40:24 -070041 <executions>
42 <execution>
43 <id>event</id>
44 <goals>
45 <goal>generate</goal>
46 </goals>
47 <configuration>
48 <args>
49 <arg>-Xsetters</arg>
50 <arg>-Xvalue-constructor</arg>
51 </args>
52 <plugins>
53 <plugin>
54 <groupId>org.jvnet.jaxb2_commons</groupId>
55 <artifactId>jaxb2-basics</artifactId>
56 <version>0.6.2</version>
57 </plugin>
58 <plugin>
59 <groupId>org.jvnet.jaxb2_commons</groupId>
60 <artifactId>jaxb2-value-constructor</artifactId>
61 <version>3.0</version>
62 </plugin>
63 </plugins>
64 <schemaDirectory>src/main/resources/schema</schemaDirectory>
65 <schemaIncludes>
66 <include>event.xsd</include>
67 </schemaIncludes>
68 <generatePackage>edu.uci.ics.asterix.event.schema.event</generatePackage>
69 <generateDirectory>${project.build.directory}/generated-sources/event</generateDirectory>
70 </configuration>
71 </execution>
72 <execution>
73 <id>configuration</id>
74 <goals>
75 <goal>generate</goal>
76 </goals>
77 <configuration>
78 <args>
79 <arg>-Xsetters</arg>
80 <arg>-Xvalue-constructor</arg>
81 </args>
82 <plugins>
83 <plugin>
84 <groupId>org.jvnet.jaxb2_commons</groupId>
85 <artifactId>jaxb2-basics</artifactId>
86 <version>0.6.2</version>
87 </plugin>
88 <plugin>
89 <groupId>org.jvnet.jaxb2_commons</groupId>
90 <artifactId>jaxb2-value-constructor</artifactId>
91 <version>3.0</version>
92 </plugin>
93 </plugins>
94 <schemaDirectory>src/main/resources/schema</schemaDirectory>
95 <schemaIncludes>
96 <include>installer-conf.xsd</include>
97 </schemaIncludes>
98 <generatePackage>edu.uci.ics.asterix.installer.schema.conf</generatePackage>
99 <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory>
100 </configuration>
101 </execution>
102 <execution>
103 <id>pattern</id>
104 <goals>
105 <goal>generate</goal>
106 </goals>
107 <configuration>
108 <args>
109 <arg>-Xsetters</arg>
110 <arg>-Xvalue-constructor</arg>
111 </args>
112 <plugins>
113 <plugin>
114 <groupId>org.jvnet.jaxb2_commons</groupId>
115 <artifactId>jaxb2-basics</artifactId>
116 <version>0.6.2</version>
117 </plugin>
118 <plugin>
119 <groupId>org.jvnet.jaxb2_commons</groupId>
120 <artifactId>jaxb2-value-constructor</artifactId>
121 <version>3.0</version>
122 </plugin>
123 </plugins>
124 <schemaDirectory>src/main/resources/schema</schemaDirectory>
125 <schemaIncludes>
126 <include>pattern.xsd</include>
127 </schemaIncludes>
128 <generatePackage>edu.uci.ics.asterix.event.schema.pattern</generatePackage>
129 <generateDirectory>${project.build.directory}/generated-sources/pattern</generateDirectory>
130 </configuration>
131 </execution>
132 </executions>
133 </plugin>
134 <plugin>
135 <artifactId>maven-assembly-plugin</artifactId>
136 <version>2.2-beta-2</version>
137 <executions>
138 <execution>
139 <configuration>
140 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
141 </configuration>
142 <phase>package</phase>
143 <goals>
144 <goal>attached</goal>
145 </goals>
146 </execution>
147 </executions>
148 </plugin>
149 </plugins>
150 </build>
ramangrover29b2201c42013-05-30 15:40:24 -0700151 <dependencies>
152 <dependency>
ramangrover29b2201c42013-05-30 15:40:24 -0700153 <groupId>args4j</groupId>
154 <artifactId>args4j</artifactId>
155 <version>2.0.12</version>
156 <type>jar</type>
157 <scope>compile</scope>
158 </dependency>
159 <dependency>
160 <groupId>org.jvnet.jaxb2_commons</groupId>
161 <artifactId>jaxb2-value-constructor</artifactId>
162 <version>3.0</version>
163 </dependency>
164 <dependency>
165 <groupId>commons-io</groupId>
166 <artifactId>commons-io</artifactId>
ramangrover29b2201c42013-05-30 15:40:24 -0700167 </dependency>
168 <dependency>
169 <groupId>org.apache.zookeeper</groupId>
170 <artifactId>zookeeper</artifactId>
171 <version>3.4.5</version>
172 <exclusions>
173 <exclusion>
174 <groupId>com.sun.jmx</groupId>
175 <artifactId>jmxri</artifactId>
176 </exclusion>
177 <exclusion>
178 <groupId>com.sun.jdmk</groupId>
179 <artifactId>jmxtools</artifactId>
180 </exclusion>
181 <exclusion>
182 <groupId>javax.jms</groupId>
183 <artifactId>jms</artifactId>
184 </exclusion>
185 </exclusions>
186 </dependency>
187 <dependency>
188 <groupId>edu.uci.ics.asterix</groupId>
189 <artifactId>asterix-common</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700190 <version>0.8.7-SNAPSHOT</version>
ramangrover29b2201c42013-05-30 15:40:24 -0700191 <type>jar</type>
192 <scope>compile</scope>
193 </dependency>
ramangrover2974915662013-06-06 15:12:21 -0700194 <dependency>
195 <groupId>log4j</groupId>
196 <artifactId>log4j</artifactId>
197 <version>1.2.9</version>
198 </dependency>
ramangrover29b2201c42013-05-30 15:40:24 -0700199 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000200</project>