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