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