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 | <groupId>edu.uci.ics.asterix</groupId> |
| 9 | <artifactId>asterix-events</artifactId> |
Vinayak Borkar | 726f392 | 2013-04-25 14:32:21 -0700 | [diff] [blame] | 10 | <version>0.0.6-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 11 | |
| 12 | <properties> |
| 13 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 14 | </properties> |
| 15 | |
| 16 | <build> |
| 17 | <plugins> |
| 18 | <plugin> |
| 19 | <groupId>org.apache.maven.plugins</groupId> |
| 20 | <artifactId>maven-compiler-plugin</artifactId> |
| 21 | <version>2.0.2</version> |
| 22 | <configuration> |
| 23 | <source>1.6</source> |
| 24 | <target>1.6</target> |
| 25 | </configuration> |
| 26 | </plugin> |
| 27 | <plugin> |
| 28 | <groupId>org.jvnet.jaxb2.maven2</groupId> |
| 29 | <artifactId>maven-jaxb2-plugin</artifactId> |
| 30 | <executions> |
| 31 | <execution> |
| 32 | <id>event</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>event.xsd</include> |
| 56 | </schemaIncludes> |
| 57 | <generatePackage>edu.uci.ics.asterix.event.schema.event</generatePackage> |
| 58 | <generateDirectory>${project.build.directory}/generated-sources/event</generateDirectory> |
| 59 | </configuration> |
| 60 | </execution> |
| 61 | <execution> |
| 62 | <id>pattern</id> |
| 63 | <goals> |
| 64 | <goal>generate</goal> |
| 65 | </goals> |
| 66 | <configuration> |
| 67 | <args> |
| 68 | <arg>-Xsetters</arg> |
| 69 | <arg>-Xvalue-constructor</arg> |
| 70 | </args> |
| 71 | <plugins> |
| 72 | <plugin> |
| 73 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 74 | <artifactId>jaxb2-basics</artifactId> |
| 75 | <version>0.6.2</version> |
| 76 | </plugin> |
| 77 | <plugin> |
| 78 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 79 | <artifactId>jaxb2-value-constructor</artifactId> |
| 80 | <version>3.0</version> |
| 81 | </plugin> |
| 82 | </plugins> |
| 83 | <schemaDirectory>src/main/resources/schema</schemaDirectory> |
| 84 | <schemaIncludes> |
| 85 | <include>pattern.xsd</include> |
| 86 | </schemaIncludes> |
| 87 | <generatePackage>edu.uci.ics.asterix.event.schema.pattern</generatePackage> |
| 88 | <generateDirectory>${project.build.directory}/generated-sources/pattern</generateDirectory> |
| 89 | </configuration> |
| 90 | </execution> |
| 91 | <execution> |
| 92 | <id>cluster</id> |
| 93 | <goals> |
| 94 | <goal>generate</goal> |
| 95 | </goals> |
| 96 | <configuration> |
| 97 | <args> |
| 98 | <arg>-Xsetters</arg> |
| 99 | <arg>-Xvalue-constructor</arg> |
| 100 | </args> |
| 101 | <plugins> |
| 102 | <plugin> |
| 103 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 104 | <artifactId>jaxb2-basics</artifactId> |
| 105 | <version>0.6.2</version> |
| 106 | </plugin> |
| 107 | <plugin> |
| 108 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 109 | <artifactId>jaxb2-value-constructor</artifactId> |
| 110 | <version>3.0</version> |
| 111 | </plugin> |
| 112 | </plugins> |
| 113 | <schemaDirectory>src/main/resources/schema</schemaDirectory> |
| 114 | <schemaIncludes> |
| 115 | <include>cluster.xsd</include> |
| 116 | </schemaIncludes> |
| 117 | <generatePackage>edu.uci.ics.asterix.event.schema.cluster</generatePackage> |
| 118 | <generateDirectory>${project.build.directory}/generated-sources/cluster</generateDirectory> |
| 119 | <bindingDirectory>src/main/resources/schema</bindingDirectory> |
| 120 | <bindingIncludes> |
| 121 | <bindingInclude>jaxb-bindings.xjb</bindingInclude> |
| 122 | </bindingIncludes> |
| 123 | </configuration> |
| 124 | </execution> |
| 125 | </executions> |
| 126 | </plugin> |
| 127 | <plugin> |
| 128 | <artifactId>maven-assembly-plugin</artifactId> |
| 129 | <version>2.2-beta-2</version> |
| 130 | <executions> |
| 131 | <execution> |
| 132 | <configuration> |
| 133 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 134 | </configuration> |
| 135 | <phase>package</phase> |
| 136 | <goals> |
| 137 | <goal>attached</goal> |
| 138 | </goals> |
| 139 | </execution> |
| 140 | </executions> |
| 141 | </plugin> |
| 142 | </plugins> |
| 143 | </build> |
| 144 | |
| 145 | <dependencies> |
| 146 | <dependency> |
| 147 | <groupId>junit</groupId> |
| 148 | <artifactId>junit</artifactId> |
| 149 | <version>4.8.1</version> |
| 150 | <scope>test</scope> |
| 151 | </dependency> |
| 152 | <dependency> |
| 153 | <groupId>args4j</groupId> |
| 154 | <artifactId>args4j</artifactId> |
| 155 | <version>2.0.12</version> |
| 156 | <type>jar</type> |
| 157 | <scope>compile</scope> |
| 158 | </dependency> |
| 159 | <dependency> |
| 160 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 161 | <artifactId>jaxb2-value-constructor</artifactId> |
| 162 | <version>3.0</version> |
| 163 | </dependency> |
| 164 | <dependency> |
| 165 | <groupId>commons-io</groupId> |
| 166 | <artifactId>commons-io</artifactId> |
| 167 | <version>1.4</version> |
| 168 | </dependency> |
Raman Grover | 8ce5e19 | 2013-05-09 16:01:08 -0700 | [diff] [blame] | 169 | <dependency> |
| 170 | <groupId>edu.uci.ics.asterix</groupId> |
| 171 | <artifactId>asterix-common</artifactId> |
| 172 | <version>0.0.6-SNAPSHOT</version> |
| 173 | <type>jar</type> |
| 174 | <scope>compile</scope> |
| 175 | </dependency> |
Vinayak Borkar | 3a43223 | 2013-05-31 11:47:58 -0700 | [diff] [blame^] | 176 | <dependency> |
| 177 | <groupId>log4j</groupId> |
| 178 | <artifactId>log4j</artifactId> |
| 179 | <version>1.2.9</version> |
| 180 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 181 | </dependencies> |
| 182 | </project> |