<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>
<groupId>com.quikj.ace</groupId>
<artifactId>ace</artifactId>
<version>3.1.0</version>
</parent>
<artifactId>ace-web</artifactId>
<packaging>war</packaging>
<name>ace-web</name>
<description>Ace web application and web services</description>
<profiles>
<profile>
<id>gwt-compile</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwt.version}</version>
<executions>
<execution>
<id>css-generation</id>
<phase>generate-sources</phase>
<goals>
<goal>css</goal>
</goals>
</execution>
<execution>
<goals>
<goal>i18n</goal>
<goal>compile</goal>
</goals>
</execution>
</executions>
<configuration>
<gwtSdkFirstInClasspath>true</gwtSdkFirstInClasspath>
<module>com.quikj.ace.web.Ace_web</module>
<i18nMessagesBundle>com.quikj.ace.web.client.AceMessages</i18nMessagesBundle>
<cssFiles>
<cssFile>com/quikj/ace/web/client/theme/Chrome.css</cssFile>
<cssFile>com/quikj/ace/web/client/theme/ChromeRtl.css</cssFile>
<cssFile>com/quikj/ace/web/client/theme/ChromeSmall.css</cssFile>
<cssFile>com/quikj/ace/web/client/theme/ChromeLarge.css</cssFile>
<cssFile>com/quikj/ace/web/client/theme/Dark.css</cssFile>
<cssFile>com/quikj/ace/web/client/theme/DarkRtl.css</cssFile>
<cssFile>com/quikj/ace/web/client/theme/DarkSmall.css</cssFile>
<cssFile>com/quikj/ace/web/client/theme/DarkLarge.css</cssFile>
</cssFiles>
<extraJvmArgs>-Xmx512M -Xss1024k</extraJvmArgs>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<warName>ace-contactcenter</warName>
<webXml>src/main/webxml/web.xml</webXml>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>${org.springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${org.springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${org.springframework.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwt.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-servlet</artifactId>
<version>${gwt.version}</version>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwt.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>juli</artifactId>
<version>6.0.37</version>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.2</version>
</dependency>
<dependency>
<groupId>com.keypoint</groupId>
<artifactId>png-encoder</artifactId>
<version>1.5</version>
</dependency>
<dependency>
<groupId>com.quikj.ace</groupId>
<artifactId>ace-ui-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.quikj.ace</groupId>
<artifactId>ace-messaging</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.quikj.ace</groupId>
<artifactId>ace-framework</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.quikj.ace</groupId>
<artifactId>ace-framework</artifactId>
<version>${project.version}</version>
<classifier>client</classifier>
</dependency>
<dependency>
<groupId>com.quikj.ace</groupId>
<artifactId>ace-app</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.2.2</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.3.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-core</artifactId>
<version>1.7</version>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-parsers</artifactId>
<version>1.7</version>
<exclusions>
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-debug-all</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-debug-all</artifactId>
<version>5.0.3</version>
</dependency>
</dependencies>
</project>