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 | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 20 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 21 | </parent> |
| 22 | <artifactId>asterix-installer</artifactId> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 23 | <properties> |
| 24 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 25 | </properties> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 26 | |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 27 | <build> |
| 28 | <plugins> |
| 29 | <plugin> |
| 30 | <groupId>org.apache.maven.plugins</groupId> |
| 31 | <artifactId>maven-compiler-plugin</artifactId> |
| 32 | <version>2.0.2</version> |
| 33 | <configuration> |
| 34 | <source>1.6</source> |
| 35 | <target>1.6</target> |
| 36 | </configuration> |
| 37 | </plugin> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 38 | |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 39 | <plugin> |
| 40 | <groupId>org.jvnet.jaxb2.maven2</groupId> |
| 41 | <artifactId>maven-jaxb2-plugin</artifactId> |
| 42 | <executions> |
| 43 | <execution> |
| 44 | <id>configuration</id> |
| 45 | <goals> |
| 46 | <goal>generate</goal> |
| 47 | </goals> |
| 48 | <configuration> |
| 49 | <args> |
| 50 | <arg>-Xsetters</arg> |
| 51 | <arg>-Xvalue-constructor</arg> |
| 52 | </args> |
| 53 | <plugins> |
| 54 | <plugin> |
| 55 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 56 | <artifactId>jaxb2-basics</artifactId> |
| 57 | <version>0.6.2</version> |
| 58 | </plugin> |
| 59 | <plugin> |
| 60 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 61 | <artifactId>jaxb2-value-constructor</artifactId> |
| 62 | <version>3.0</version> |
| 63 | </plugin> |
| 64 | </plugins> |
| 65 | <schemaDirectory>src/main/resources/schema</schemaDirectory> |
| 66 | <schemaIncludes> |
| 67 | <include>installer-conf.xsd</include> |
| 68 | </schemaIncludes> |
| 69 | <generatePackage>edu.uci.ics.asterix.installer.schema.conf</generatePackage> |
| 70 | <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory> |
| 71 | </configuration> |
| 72 | </execution> |
| 73 | <execution> |
| 74 | <id>cluster</id> |
| 75 | <goals> |
| 76 | <goal>generate</goal> |
| 77 | </goals> |
| 78 | <configuration> |
| 79 | <args> |
| 80 | <arg>-Xsetters</arg> |
| 81 | <arg>-Xvalue-constructor</arg> |
| 82 | </args> |
| 83 | <schemaDirectory>src/main/resources/schema</schemaDirectory> |
| 84 | <schemaIncludes> |
| 85 | <include>cluster.xsd</include> |
| 86 | </schemaIncludes> |
| 87 | <generatePackage>edu.uci.ics.asterix.installer.schema.cluster</generatePackage> |
| 88 | <bindingDirectory>src/main/resources/schema</bindingDirectory> |
| 89 | <bindingIncludes> |
| 90 | <bindingInclude>jaxb-bindings.xjb</bindingInclude> |
| 91 | </bindingIncludes> |
| 92 | <generateDirectory>${project.build.directory}/generated-sources/cluster</generateDirectory> |
| 93 | </configuration> |
| 94 | </execution> |
| 95 | </executions> |
| 96 | </plugin> |
| 97 | <plugin> |
| 98 | <artifactId>maven-assembly-plugin</artifactId> |
| 99 | <version>2.2-beta-5</version> |
| 100 | <executions> |
| 101 | <execution> |
| 102 | <configuration> |
| 103 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 104 | </configuration> |
| 105 | <phase>package</phase> |
| 106 | <goals> |
| 107 | <goal>attached</goal> |
| 108 | </goals> |
| 109 | </execution> |
| 110 | </executions> |
| 111 | </plugin> |
| 112 | <plugin> |
| 113 | <groupId>org.apache.maven.plugins</groupId> |
| 114 | <artifactId>maven-failsafe-plugin</artifactId> |
| 115 | <version>2.6</version> |
| 116 | <executions> |
| 117 | <execution> |
| 118 | <goals> |
| 119 | <goal>integration-test</goal> |
| 120 | <goal>verify</goal> |
| 121 | </goals> |
| 122 | </execution> |
| 123 | </executions> |
| 124 | </plugin> |
| 125 | </plugins> |
| 126 | </build> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 127 | |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 128 | <dependencies> |
| 129 | <dependency> |
| 130 | <groupId>junit</groupId> |
| 131 | <artifactId>junit</artifactId> |
| 132 | <version>4.8.1</version> |
| 133 | <scope>test</scope> |
| 134 | </dependency> |
| 135 | <dependency> |
| 136 | <groupId>args4j</groupId> |
| 137 | <artifactId>args4j</artifactId> |
| 138 | <version>2.0.12</version> |
| 139 | <type>jar</type> |
| 140 | <scope>compile</scope> |
| 141 | </dependency> |
| 142 | <dependency> |
| 143 | <groupId>org.apache.zookeeper</groupId> |
| 144 | <artifactId>zookeeper</artifactId> |
| 145 | <version>3.4.5</version> |
| 146 | <exclusions> |
| 147 | <exclusion> |
| 148 | <groupId>com.sun.jmx</groupId> |
| 149 | <artifactId>jmxri</artifactId> |
| 150 | </exclusion> |
| 151 | <exclusion> |
| 152 | <groupId>com.sun.jdmk</groupId> |
| 153 | <artifactId>jmxtools</artifactId> |
| 154 | </exclusion> |
| 155 | <exclusion> |
| 156 | <groupId>javax.jms</groupId> |
| 157 | <artifactId>jms</artifactId> |
| 158 | </exclusion> |
| 159 | </exclusions> |
| 160 | </dependency> |
| 161 | <dependency> |
| 162 | <groupId>commons-io</groupId> |
| 163 | <artifactId>commons-io</artifactId> |
| 164 | <version>1.4</version> |
| 165 | </dependency> |
| 166 | <dependency> |
| 167 | <groupId>edu.uci.ics.asterix</groupId> |
| 168 | <artifactId>asterix-events</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 169 | <version>0.8.1-SNAPSHOT</version> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 170 | <type>jar</type> |
| 171 | <scope>compile</scope> |
| 172 | </dependency> |
| 173 | <dependency> |
| 174 | <groupId>edu.uci.ics.asterix</groupId> |
| 175 | <artifactId>asterix-common</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 176 | <version>0.8.1-SNAPSHOT</version> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 177 | <type>jar</type> |
| 178 | <scope>compile</scope> |
| 179 | </dependency> |
| 180 | <dependency> |
| 181 | <groupId>edu.uci.ics.asterix</groupId> |
| 182 | <artifactId>asterix-common</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 183 | <version>0.8.1-SNAPSHOT</version> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 184 | <type>test-jar</type> |
| 185 | <scope>test</scope> |
| 186 | </dependency> |
| 187 | <dependency> |
| 188 | <groupId>edu.uci.ics.asterix</groupId> |
| 189 | <artifactId>asterix-server</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 190 | <version>0.8.1-SNAPSHOT</version> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 191 | <type>zip</type> |
| 192 | <classifier>binary-assembly</classifier> |
| 193 | </dependency> |
| 194 | <dependency> |
| 195 | <groupId>edu.uci.ics.asterix</groupId> |
| 196 | <artifactId>asterix-test-framework</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 197 | <version>0.8.1-SNAPSHOT</version> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 198 | <scope>test</scope> |
| 199 | </dependency> |
| 200 | </dependencies> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 201 | |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 202 | </project> |