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> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 38 | <plugin> |
| 39 | <artifactId>maven-assembly-plugin</artifactId> |
| 40 | <version>2.2-beta-5</version> |
| 41 | <executions> |
| 42 | <execution> |
| 43 | <configuration> |
| 44 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 45 | </configuration> |
| 46 | <phase>package</phase> |
| 47 | <goals> |
| 48 | <goal>attached</goal> |
| 49 | </goals> |
| 50 | </execution> |
| 51 | </executions> |
| 52 | </plugin> |
| 53 | <plugin> |
| 54 | <groupId>org.apache.maven.plugins</groupId> |
| 55 | <artifactId>maven-failsafe-plugin</artifactId> |
| 56 | <version>2.6</version> |
| 57 | <executions> |
| 58 | <execution> |
| 59 | <goals> |
| 60 | <goal>integration-test</goal> |
| 61 | <goal>verify</goal> |
| 62 | </goals> |
| 63 | </execution> |
| 64 | </executions> |
| 65 | </plugin> |
| 66 | </plugins> |
| 67 | </build> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 68 | |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 69 | <dependencies> |
| 70 | <dependency> |
| 71 | <groupId>junit</groupId> |
| 72 | <artifactId>junit</artifactId> |
| 73 | <version>4.8.1</version> |
| 74 | <scope>test</scope> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>args4j</groupId> |
| 78 | <artifactId>args4j</artifactId> |
| 79 | <version>2.0.12</version> |
| 80 | <type>jar</type> |
| 81 | <scope>compile</scope> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.apache.zookeeper</groupId> |
| 85 | <artifactId>zookeeper</artifactId> |
| 86 | <version>3.4.5</version> |
| 87 | <exclusions> |
| 88 | <exclusion> |
| 89 | <groupId>com.sun.jmx</groupId> |
| 90 | <artifactId>jmxri</artifactId> |
| 91 | </exclusion> |
| 92 | <exclusion> |
| 93 | <groupId>com.sun.jdmk</groupId> |
| 94 | <artifactId>jmxtools</artifactId> |
| 95 | </exclusion> |
| 96 | <exclusion> |
| 97 | <groupId>javax.jms</groupId> |
| 98 | <artifactId>jms</artifactId> |
| 99 | </exclusion> |
| 100 | </exclusions> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>commons-io</groupId> |
| 104 | <artifactId>commons-io</artifactId> |
| 105 | <version>1.4</version> |
| 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>edu.uci.ics.asterix</groupId> |
| 109 | <artifactId>asterix-events</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 110 | <version>0.8.1-SNAPSHOT</version> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 111 | <type>jar</type> |
| 112 | <scope>compile</scope> |
| 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>edu.uci.ics.asterix</groupId> |
| 116 | <artifactId>asterix-common</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 117 | <version>0.8.1-SNAPSHOT</version> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 118 | <type>jar</type> |
| 119 | <scope>compile</scope> |
| 120 | </dependency> |
| 121 | <dependency> |
| 122 | <groupId>edu.uci.ics.asterix</groupId> |
| 123 | <artifactId>asterix-common</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 124 | <version>0.8.1-SNAPSHOT</version> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 125 | <type>test-jar</type> |
| 126 | <scope>test</scope> |
| 127 | </dependency> |
| 128 | <dependency> |
| 129 | <groupId>edu.uci.ics.asterix</groupId> |
| 130 | <artifactId>asterix-server</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 131 | <version>0.8.1-SNAPSHOT</version> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 132 | <type>zip</type> |
| 133 | <classifier>binary-assembly</classifier> |
| 134 | </dependency> |
| 135 | <dependency> |
| 136 | <groupId>edu.uci.ics.asterix</groupId> |
| 137 | <artifactId>asterix-test-framework</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 138 | <version>0.8.1-SNAPSHOT</version> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 139 | <scope>test</scope> |
| 140 | </dependency> |
| 141 | </dependencies> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 142 | |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 143 | </project> |