vinayakb | 67c655f | 2013-04-07 01:31:49 +0000 | [diff] [blame^] | 1 | <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"> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <artifactId>asterix</artifactId> |
| 6 | <groupId>edu.uci.ics.asterix</groupId> |
vinayakb | 67c655f | 2013-04-07 01:31:49 +0000 | [diff] [blame^] | 7 | <version>0.0.4-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 8 | </parent> |
| 9 | <artifactId>asterix-installer</artifactId> |
| 10 | |
| 11 | <properties> |
| 12 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 13 | </properties> |
| 14 | |
| 15 | <build> |
| 16 | <plugins> |
| 17 | <plugin> |
| 18 | <groupId>org.apache.maven.plugins</groupId> |
| 19 | <artifactId>maven-compiler-plugin</artifactId> |
| 20 | <version>2.0.2</version> |
| 21 | <configuration> |
| 22 | <source>1.6</source> |
| 23 | <target>1.6</target> |
| 24 | </configuration> |
| 25 | </plugin> |
| 26 | |
| 27 | <plugin> |
| 28 | <groupId>org.jvnet.jaxb2.maven2</groupId> |
| 29 | <artifactId>maven-jaxb2-plugin</artifactId> |
| 30 | <executions> |
| 31 | <execution> |
| 32 | <id>configuration</id> |
| 33 | <goals> |
| 34 | <goal>generate</goal> |
| 35 | </goals> |
| 36 | <configuration> |
| 37 | <args> |
| 38 | <arg>-Xsetters</arg> |
| 39 | <arg>-Xvalue-constructor</arg> |
| 40 | </args> |
| 41 | <plugins> |
| 42 | <plugin> |
| 43 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 44 | <artifactId>jaxb2-basics</artifactId> |
| 45 | <version>0.6.2</version> |
| 46 | </plugin> |
| 47 | <plugin> |
| 48 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 49 | <artifactId>jaxb2-value-constructor</artifactId> |
| 50 | <version>3.0</version> |
| 51 | </plugin> |
| 52 | </plugins> |
| 53 | <schemaDirectory>src/main/resources/schema</schemaDirectory> |
| 54 | <schemaIncludes> |
| 55 | <include>installer-conf.xsd</include> |
| 56 | </schemaIncludes> |
| 57 | <generatePackage>edu.uci.ics.asterix.installer.schema.conf</generatePackage> |
| 58 | <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory> |
| 59 | </configuration> |
| 60 | </execution> |
| 61 | <execution> |
| 62 | <id>cluster</id> |
| 63 | <goals> |
| 64 | <goal>generate</goal> |
| 65 | </goals> |
| 66 | <configuration> |
| 67 | <schemaDirectory>src/main/resources/schema</schemaDirectory> |
| 68 | <schemaIncludes> |
| 69 | <include>cluster.xsd</include> |
| 70 | </schemaIncludes> |
| 71 | <generatePackage>edu.uci.ics.asterix.installer.schema.cluster</generatePackage> |
| 72 | <bindingDirectory>src/main/resources/schema</bindingDirectory> |
| 73 | <bindingIncludes> |
| 74 | <bindingInclude>jaxb-bindings.xjb</bindingInclude> |
| 75 | </bindingIncludes> |
| 76 | <generateDirectory>${project.build.directory}/generated-sources/cluster</generateDirectory> |
| 77 | </configuration> |
| 78 | </execution> |
| 79 | </executions> |
| 80 | </plugin> |
| 81 | <plugin> |
| 82 | <artifactId>maven-assembly-plugin</artifactId> |
| 83 | <version>2.2-beta-2</version> |
| 84 | <executions> |
| 85 | <execution> |
| 86 | <configuration> |
| 87 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 88 | </configuration> |
| 89 | <phase>package</phase> |
| 90 | <goals> |
| 91 | <goal>attached</goal> |
| 92 | </goals> |
| 93 | </execution> |
| 94 | </executions> |
| 95 | </plugin> |
| 96 | </plugins> |
| 97 | </build> |
| 98 | |
| 99 | <dependencies> |
| 100 | <dependency> |
| 101 | <groupId>junit</groupId> |
| 102 | <artifactId>junit</artifactId> |
| 103 | <version>3.8.1</version> |
| 104 | <scope>test</scope> |
| 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>args4j</groupId> |
| 108 | <artifactId>args4j</artifactId> |
| 109 | <version>2.0.12</version> |
| 110 | <type>jar</type> |
| 111 | <scope>compile</scope> |
| 112 | </dependency> |
| 113 | <dependency> |
| 114 | <groupId>org.apache.zookeeper</groupId> |
| 115 | <artifactId>zookeeper</artifactId> |
| 116 | <version>3.4.5</version> |
| 117 | <exclusions> |
| 118 | <exclusion> |
| 119 | <groupId>com.sun.jmx</groupId> |
| 120 | <artifactId>jmxri</artifactId> |
| 121 | </exclusion> |
| 122 | <exclusion> |
| 123 | <groupId>com.sun.jdmk</groupId> |
| 124 | <artifactId>jmxtools</artifactId> |
| 125 | </exclusion> |
| 126 | <exclusion> |
| 127 | <groupId>javax.jms</groupId> |
| 128 | <artifactId>jms</artifactId> |
| 129 | </exclusion> |
| 130 | </exclusions> |
| 131 | </dependency> |
| 132 | <dependency> |
| 133 | <groupId>commons-io</groupId> |
| 134 | <artifactId>commons-io</artifactId> |
| 135 | <version>1.4</version> |
| 136 | </dependency> |
| 137 | <dependency> |
| 138 | <groupId>edu.uci.ics.asterix</groupId> |
| 139 | <artifactId>asterix-events</artifactId> |
vinayakb | 67c655f | 2013-04-07 01:31:49 +0000 | [diff] [blame^] | 140 | <version>0.0.4-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 141 | <type>jar</type> |
| 142 | <scope>compile</scope> |
| 143 | </dependency> |
| 144 | <dependency> |
| 145 | <groupId>edu.uci.ics.asterix</groupId> |
| 146 | <artifactId>asterix-server</artifactId> |
vinayakb | 67c655f | 2013-04-07 01:31:49 +0000 | [diff] [blame^] | 147 | <version>0.0.4-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 148 | <type>zip</type> |
| 149 | <classifier>binary-assembly</classifier> |
| 150 | </dependency> |
| 151 | </dependencies> |
| 152 | </project> |