Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <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>
- <groupId>mygwtapp</groupId>
- <artifactId>mygwtapp</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <properties>
- <!-- convenience to define GWT version in one place -->
- <gwt.version>2.4.0</gwt.version>
- <gwtp.version>0.6</gwtp.version>
- <gxt.version>3.0.0-beta3</gxt.version>
- <spring.version>3.0.4.RELEASE</spring.version>
- <!-- tell the compiler we can use 1.5 -->
- <maven.compiler.source>1.5</maven.compiler.source>
- <maven.compiler.target>1.5</maven.compiler.target>
- </properties>
- <repositories>
- <repository>
- <id>codehaus-maven-repo</id>
- <name>Codehaus repo</name>
- <url>http://repository.codehaus.org/org/codehaus/mojo/</url>
- </repository>
- <repository>
- <id>sonatype.snapshots</id>
- <name>Sonatype snapshot repository</name>
- <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
- <layout>default</layout>
- </repository>
- <repository>
- <id>morphia.googlecode.com</id>
- <name>Morphia Repo at Google Code</name>
- <url>http://morphia.googlecode.com/svn/mavenrepo</url>
- </repository>
- </repositories>
- <dependencies>
- <!-- GWT dependencies (from central repo) -->
- <dependency>
- <groupId>com.google.gwt</groupId>
- <artifactId>gwt-servlet</artifactId>
- <version>${gwt.version}</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>com.google.gwt</groupId>
- <artifactId>gwt-user</artifactId>
- <version>${gwt.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-core</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-web</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context-support</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-aop</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-beans</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-test</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sencha.gxt</groupId>
- <artifactId>gxt</artifactId>
- <version>${gxt.version}</version>
- <scope>provided</scope>
- </dependency>
- <!--
- <dependency>
- <groupId>com.sencha.gxt</groupId>
- <artifactId>gxt-uibinder</artifactId>
- <version>2.4.0</version>
- <scope>provided</scope>
- </dependency>
- -->
- <dependency>
- <groupId>com.sencha.gxt</groupId>
- <artifactId>gxt-chart</artifactId>
- <version>${gxt.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.sencha.gxt</groupId>
- <artifactId>uibinder-bridge</artifactId>
- <version>2.4.0</version>
- <scope>provided</scope>
- </dependency>
- <!--
- <dependency>
- <groupId>com.sencha.gxt</groupId>
- <artifactId>gxt-desktop</artifactId>
- <version>${gxt.version}</version>
- </dependency>
- -->
- <!--
- <dependency>
- <groupId>com.google.gwt.inject</groupId>
- <artifactId>gin</artifactId>
- <version>1.5.0</version>
- </dependency>
- -->
- <dependency>
- <groupId>com.google.gwt.inject</groupId>
- <artifactId>gin</artifactId>
- <version>1.5.0</version>
- </dependency>
- <!-- MVP component -->
- <dependency>
- <groupId>com.gwtplatform</groupId>
- <artifactId>gwtp-all</artifactId>
- <version>${gwtp.version}</version>
- </dependency>
- <!--
- <dependency>
- <groupId>org.jboss.errai</groupId>
- <artifactId>errai-cdi-jboss</artifactId>
- <version>2.0.Beta2</version>
- </dependency>
- -->
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
- <version>3.6.3.Final</version>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-search</artifactId>
- <version>3.4.2.Final</version>
- </dependency>
- <dependency>
- <groupId>com.google.code.morphia</groupId>
- <artifactId>morphia</artifactId>
- <version>0.99.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.scribe</groupId>
- <artifactId>scribe</artifactId>
- <version>1.3.0</version>
- </dependency>
- <dependency>
- <groupId>com.googlecode.gwtquery</groupId>
- <artifactId>gwtquery</artifactId>
- <version>1.1.0</version>
- </dependency>
- <dependency>
- <groupId>com.googlecode.gwt-validation</groupId>
- <artifactId>gwt-validation</artifactId>
- <version>2.0</version>
- </dependency>
- <dependency>
- <groupId>commons-fileupload</groupId>
- <artifactId>commons-fileupload</artifactId>
- <version>1.2.2</version>
- </dependency>
- <dependency>
- <groupId>net.tanesha.recaptcha4j</groupId>
- <artifactId>recaptcha4j</artifactId>
- <version>0.0.7</version>
- </dependency>
- <dependency>
- <groupId>com.claudiushauptmann</groupId>
- <artifactId>gwt-recaptcha</artifactId>
- <version>1.0.0.Beta2</version>
- </dependency>
- <!-- XMPP -->
- <dependency>
- <groupId>org.igniterealtime.smack</groupId>
- <artifactId>smack</artifactId>
- <version>3.2.1</version>
- </dependency>
- <dependency>
- <groupId>jivesoftware</groupId>
- <artifactId>smackx</artifactId>
- <version>3.1.0</version>
- </dependency>
- <!-- Logging -->
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.16</version>
- </dependency>
- <!-- test -->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.7</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <outputDirectory>war/WEB-INF/classes</outputDirectory>
- <plugins>
- <!--
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>gwt-maven-plugin</artifactId>
- <version>1.2</version>
- <executions>
- <execution>
- <goals>
- <goal>compile</goal>
- <goal>generateAsync</goal>
- <goal>test</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <runTarget>greeting.html</runTarget>
- </configuration>
- </plugin>
- -->
- <!--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>aspectj-maven-plugin</artifactId>
- <versionRange>[1.0,)</versionRange>
- <goals>
- <goal>test-compile</goal>
- <goal>compile</goal>
- </goals>
- </pluginExecutionFilter>
- <action>
- <execute />
- </action>
- </pluginExecution>
- </pluginExecutions>
- </lifecycleMappingMetadata>
- </configuration>
- </plugin>
- <!--
- If you want to use the target/web.xml file mergewebxml produces,
- tell the war plugin to use it. Also, exclude what you want from the
- final artifact here. <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-war-plugin</artifactId> <configuration>
- <webXml>target/web.xml</webXml>
- <warSourceExcludes>.gwt-tmp/**</warSourceExcludes> </configuration>
- </plugin>
- -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0.2</version>
- <configuration>
- <source>${maven.compiler.source}</source>
- <target>${maven.compiler.target}</target>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <version>2.1-beta-1</version>
- <configuration>
- <warSourceDirectory>war</warSourceDirectory>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement