| <?xml version="1.0" encoding="UTF-8"?> |
| <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/maven-v4_0_0.xsd"> |
| |
| <modelVersion>4.0.0</modelVersion> |
| <artifactId>hyracks-admin-console</artifactId> |
| <packaging>war</packaging> |
| <parent> |
| <groupId>edu.uci.ics.hyracks</groupId> |
| <artifactId>hyracks</artifactId> |
| <version>0.2.0-SNAPSHOT</version> |
| </parent> |
| |
| <properties> |
| <gwtVersion>2.3.0</gwtVersion> |
| <webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>com.google.gwt</groupId> |
| <artifactId>gwt-user</artifactId> |
| <version>${gwtVersion}</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.7</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>javax.validation</groupId> |
| <artifactId>validation-api</artifactId> |
| <version>1.0.0.GA</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>javax.validation</groupId> |
| <artifactId>validation-api</artifactId> |
| <version>1.0.0.GA</version> |
| <classifier>sources</classifier> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.googlecode.gchart</groupId> |
| <artifactId>gchart</artifactId> |
| <version>2.6</version> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <!-- Generate compiled stuff in the folder used for developing mode --> |
| <outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory> |
| |
| <plugins> |
| |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>gwt-maven-plugin</artifactId> |
| <version>2.3.0-1</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>compile</goal> |
| <goal>test</goal> |
| <goal>i18n</goal> |
| <goal>generateAsync</goal> |
| </goals> |
| </execution> |
| </executions> |
| <!-- Plugin configuration. There are many available options, see |
| gwt-maven-plugin documentation at codehaus.org --> |
| <configuration> |
| <runTarget>HyracksAdminConsole.html</runTarget> |
| <hostedWebapp>${webappDirectory}</hostedWebapp> |
| <i18nMessagesBundle>edu.uci.ics.hyracks.adminconsole.client.Messages</i18nMessagesBundle> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-war-plugin</artifactId> |
| <version>2.1.1</version> |
| <executions> |
| <execution> |
| <phase>compile</phase> |
| <goals> |
| <goal>exploded</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <webappDirectory>${webappDirectory}</webappDirectory> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>2.3.2</version> |
| <configuration> |
| <source>1.6</source> |
| <target>1.6</target> |
| </configuration> |
| </plugin> |
| </plugins> |
| <pluginManagement> |
| <plugins> |
| <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| <plugin> |
| <groupId>org.eclipse.m2e</groupId> |
| <artifactId>lifecycle-mapping</artifactId> |
| <version>1.0.0</version> |
| <configuration> |
| <lifecycleMappingMetadata> |
| <pluginExecutions> |
| <pluginExecution> |
| <pluginExecutionFilter> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId> |
| gwt-maven-plugin |
| </artifactId> |
| <versionRange> |
| [2.3.0-1,) |
| </versionRange> |
| <goals> |
| <goal>i18n</goal> |
| <goal>generateAsync</goal> |
| </goals> |
| </pluginExecutionFilter> |
| <action> |
| <ignore></ignore> |
| </action> |
| </pluginExecution> |
| <pluginExecution> |
| <pluginExecutionFilter> |
| <groupId> |
| org.apache.maven.plugins |
| </groupId> |
| <artifactId> |
| maven-war-plugin |
| </artifactId> |
| <versionRange> |
| [2.1.1,) |
| </versionRange> |
| <goals> |
| <goal>exploded</goal> |
| </goals> |
| </pluginExecutionFilter> |
| <action> |
| <ignore></ignore> |
| </action> |
| </pluginExecution> |
| </pluginExecutions> |
| </lifecycleMappingMetadata> |
| </configuration> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| |
| </project> |