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