blob: 28ad995534b0935811f5d3ab1850e7f31aca32ff [file] [log] [blame]
ramangrover29f18d4562013-02-15 23:56:00 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <artifactId>asterix</artifactId>
6 <groupId>edu.uci.ics.asterix</groupId>
7 <version>0.0.4-SNAPSHOT</version>
8 </parent>
9 <groupId>edu.uci.ics.asterix</groupId>
10 <artifactId>asterix-installer</artifactId>
11 <version>0.0.4-SNAPSHOT</version>
12
13 <properties>
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15 </properties>
16
17 <build>
18 <plugins>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-compiler-plugin</artifactId>
22 <version>2.0.2</version>
23 <configuration>
24 <source>1.6</source>
25 <target>1.6</target>
26 </configuration>
27 </plugin>
28
29 <plugin>
30 <groupId>org.jvnet.jaxb2.maven2</groupId>
31 <artifactId>maven-jaxb2-plugin</artifactId>
32 <executions>
33 <execution>
34 <id>configuration</id>
35 <goals>
36 <goal>generate</goal>
37 </goals>
38 <configuration>
ramangrover29@gmail.com73bf75e2013-03-11 01:41:42 +000039 <args>
40 <arg>-Xsetters</arg>
41 <arg>-Xvalue-constructor</arg>
42 </args>
43 <plugins>
44 <plugin>
45 <groupId>org.jvnet.jaxb2_commons</groupId>
46 <artifactId>jaxb2-basics</artifactId>
47 <version>0.6.2</version>
48 </plugin>
49 <plugin>
50 <groupId>org.jvnet.jaxb2_commons</groupId>
51 <artifactId>jaxb2-value-constructor</artifactId>
52 <version>3.0</version>
53 </plugin>
54 </plugins>
ramangrover29f18d4562013-02-15 23:56:00 +000055 <schemaDirectory>src/main/resources/schema</schemaDirectory>
56 <schemaIncludes>
ramangrover29@gmail.com4ba21522013-02-27 23:35:42 +000057 <include>installer-conf.xsd</include>
ramangrover29f18d4562013-02-15 23:56:00 +000058 </schemaIncludes>
59 <generatePackage>edu.uci.ics.asterix.installer.schema.conf</generatePackage>
60 <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory>
61 </configuration>
62 </execution>
63 <execution>
64 <id>cluster</id>
65 <goals>
66 <goal>generate</goal>
67 </goals>
68 <configuration>
69 <schemaDirectory>src/main/resources/schema</schemaDirectory>
70 <schemaIncludes>
71 <include>cluster.xsd</include>
72 </schemaIncludes>
73 <generatePackage>edu.uci.ics.asterix.installer.schema.cluster</generatePackage>
ramangrover29@gmail.com73bf75e2013-03-11 01:41:42 +000074 <bindingDirectory>src/main/resources/schema</bindingDirectory>
75 <bindingIncludes>
76 <bindingInclude>jaxb-bindings.xjb</bindingInclude>
77 </bindingIncludes>
ramangrover29f18d4562013-02-15 23:56:00 +000078 <generateDirectory>${project.build.directory}/generated-sources/cluster</generateDirectory>
79 </configuration>
80 </execution>
81 </executions>
82 </plugin>
ramangrover29116eb972013-02-20 20:47:35 +000083 <plugin>
84 <artifactId>maven-assembly-plugin</artifactId>
85 <version>2.2-beta-2</version>
86 <executions>
87 <execution>
88 <configuration>
89 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
90 </configuration>
91 <phase>package</phase>
92 <goals>
93 <goal>attached</goal>
94 </goals>
95 </execution>
96 </executions>
97 </plugin>
ramangrover29f18d4562013-02-15 23:56:00 +000098 </plugins>
99 </build>
100
101 <dependencies>
102 <dependency>
103 <groupId>junit</groupId>
104 <artifactId>junit</artifactId>
105 <version>3.8.1</version>
106 <scope>test</scope>
107 </dependency>
108 <dependency>
109 <groupId>args4j</groupId>
110 <artifactId>args4j</artifactId>
111 <version>2.0.12</version>
112 <type>jar</type>
113 <scope>compile</scope>
114 </dependency>
115 <dependency>
116 <groupId>org.apache.zookeeper</groupId>
117 <artifactId>zookeeper</artifactId>
ramangrover29@gmail.com2417be82013-02-24 21:38:25 +0000118 <version>3.4.5</version>
ramangrover29f18d4562013-02-15 23:56:00 +0000119 <exclusions>
120 <exclusion>
121 <groupId>com.sun.jmx</groupId>
122 <artifactId>jmxri</artifactId>
123 </exclusion>
124 <exclusion>
125 <groupId>com.sun.jdmk</groupId>
126 <artifactId>jmxtools</artifactId>
127 </exclusion>
128 <exclusion>
129 <groupId>javax.jms</groupId>
130 <artifactId>jms</artifactId>
131 </exclusion>
132 </exclusions>
133 </dependency>
134 <dependency>
135 <groupId>commons-io</groupId>
136 <artifactId>commons-io</artifactId>
137 <version>1.4</version>
138 </dependency>
139 <dependency>
140 <groupId>edu.uci.ics.asterix</groupId>
141 <artifactId>asterix-events</artifactId>
142 <version>0.0.4-SNAPSHOT</version>
143 <type>jar</type>
144 <scope>compile</scope>
145 </dependency>
146 <dependency>
ramangrover29f18d4562013-02-15 23:56:00 +0000147 <groupId>edu.uci.ics.asterix</groupId>
ramangrover29@gmail.com4ba21522013-02-27 23:35:42 +0000148 <artifactId>asterix-server</artifactId>
ramangrover29f18d4562013-02-15 23:56:00 +0000149 <version>0.0.4-SNAPSHOT</version>
150 <type>zip</type>
151 <classifier>binary-assembly</classifier>
152 </dependency>
153 </dependencies>
154</project>