| <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"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <artifactId>asterix</artifactId> |
| <groupId>edu.uci.ics.asterix</groupId> |
| <version>0.0.4</version> |
| </parent> |
| <artifactId>asterix-tools</artifactId> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>2.0.2</version> |
| <configuration> |
| <source>1.7</source> |
| <target>1.7</target> |
| <fork>true</fork> |
| </configuration> |
| </plugin> |
| <plugin> |
| <artifactId>maven-jar-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>aqlclient</id> |
| <goals> |
| <goal>jar</goal> |
| </goals> |
| <phase>package</phase> |
| <configuration> |
| <classifier>aqlclient</classifier> |
| <archive> |
| <manifest> |
| <MainClass>edu.uci.ics.asterix.tools.aqlclient.AqlClient</MainClass> |
| </manifest> |
| </archive> |
| <includes> |
| <include>**/uci/ics/asterix/tools/aqlclient/*</include> |
| </includes> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <version>2.7.2</version> |
| <executions> |
| <execution> |
| <id>default-test</id> |
| <phase>test</phase> |
| <goals> |
| <goal>test</goal> |
| </goals> |
| <configuration> |
| <forkMode>pertest</forkMode> |
| <argLine>-enableassertions -Xmx1024m -Dfile.encoding=UTF-8 |
| -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine> |
| <includes> |
| <include>**/*TestSuite.java</include> |
| <include>**/*Test.java</include> |
| </includes> |
| </configuration> |
| </execution> |
| </executions> |
| <configuration> |
| <forkMode>pertest</forkMode> |
| <argLine>-enableassertions -Xmx1536m -Dfile.encoding=UTF-8 |
| -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine> |
| <includes> |
| <include>**/*TestSuite.java</include> |
| <include>**/*Test.java</include> |
| </includes> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>appassembler-maven-plugin</artifactId> |
| <version>1.0</version> |
| <executions> |
| <execution> |
| <configuration> |
| <programs> |
| <program> |
| <mainClass>edu.uci.ics.asterix.tools.TblToAdm</mainClass> |
| <name>tbl2adm</name> |
| </program> |
| <program> |
| <mainClass>edu.uci.ics.asterix.tools.datagen.AdgClientDriver</mainClass> |
| <name>adg</name> |
| </program> |
| </programs> |
| <repositoryLayout>flat</repositoryLayout> |
| <repositoryName>lib</repositoryName> |
| </configuration> |
| <phase>package</phase> |
| <goals> |
| <goal>assemble</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <artifactId>maven-assembly-plugin</artifactId> |
| <version>2.2-beta-5</version> |
| <executions> |
| <execution> |
| <configuration> |
| <descriptors> |
| <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| </descriptors> |
| </configuration> |
| <phase>package</phase> |
| <goals> |
| <goal>attached</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <dependencies> |
| <dependency> |
| <groupId>edu.uci.ics.asterix</groupId> |
| <artifactId>asterix-aql</artifactId> |
| <version>0.0.4</version> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>edu.uci.ics.asterix</groupId> |
| <artifactId>asterix-algebra</artifactId> |
| <version>0.0.4</version> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.httpcomponents</groupId> |
| <artifactId>httpclient</artifactId> |
| <version>4.2.2</version> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.httpcomponents</groupId> |
| <artifactId>httpcore</artifactId> |
| <version>4.2.2</version> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.8.1</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| </project> |