Created
January 29, 2013 18:10
-
-
Save branflake2267/4666272 to your computer and use it in GitHub Desktop.
GWTP Maven Dependencies Manual Download
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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>TestProjectMaven</groupId> | |
<artifactId>TestProjectMaven</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<packaging>war</packaging> | |
<properties> | |
<!-- GWTP Dependencies - https://github.com/ArcBees/GWTP/wiki/Maven-Configuration --> | |
<gwtp.version>0.8-beta-1</gwtp.version> | |
<webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory> | |
</properties> | |
<build> | |
<sourceDirectory>src</sourceDirectory> | |
<resources> | |
<resource> | |
<directory>src</directory> | |
<excludes> | |
<exclude>**/*.java</exclude> | |
</excludes> | |
</resource> | |
</resources> | |
<plugins> | |
<plugin> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>2.3.2</version> | |
<configuration> | |
<source>1.6</source> | |
<target>1.6</target> | |
</configuration> | |
</plugin> | |
<!-- Copy the war contents to target --> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-war-plugin</artifactId> | |
<version>2.3</version> | |
<executions> | |
<execution> | |
<phase>compile</phase> | |
<goals> | |
<goal>exploded</goal> | |
</goals> | |
</execution> | |
</executions> | |
<configuration> | |
<webappDirectory>${webappDirectory}</webappDirectory> | |
<webResources> | |
<resource> | |
<directory>war/WEB-INF</directory> | |
<filtering>true</filtering> | |
<targetPath>WEB-INF</targetPath> | |
</resource> | |
</webResources> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
<dependencies> | |
<!-- MVP component --> | |
<dependency> | |
<groupId>com.gwtplatform</groupId> | |
<artifactId>gwtp-mvp-client</artifactId> | |
<version>${gwtp.version}</version> | |
<scope>provided</scope> | |
</dependency> | |
<!-- Dispatch component --> | |
<dependency> | |
<groupId>com.gwtplatform</groupId> | |
<artifactId>gwtp-dispatch-client</artifactId> | |
<version>${gwtp.version}</version> | |
<scope>provided</scope> <!-- Remove for GWTP 0.5.1 and earlier --> | |
</dependency> | |
<!-- Server Guice --> | |
<dependency> | |
<groupId>com.gwtplatform</groupId> | |
<artifactId>gwtp-dispatch-server-guice</artifactId> | |
<!-- Or, if you use spring: <artifactId>gwtp-dispatch-server-spring</artifactId> --> | |
<version>${gwtp.version}</version> | |
</dependency> | |
<!-- Server Spring - If you want to use spring... | |
<dependency> | |
<groupId>com.gwtplatform</groupId> | |
<artifactId>gwtp-dispatch-server-spring</artifactId> | |
<version>${gwtp.version}</version> | |
</dependency> --> | |
<!-- Crawler component --> | |
<dependency> | |
<groupId>com.gwtplatform</groupId> | |
<artifactId>gwtp-crawler</artifactId> | |
<version>${gwtp.version}</version> | |
</dependency> | |
<!-- Annotation component --> | |
<dependency> | |
<groupId>com.gwtplatform</groupId> | |
<artifactId>gwtp-processors</artifactId> | |
<version>${gwtp.version}</version> | |
<scope>provided</scope> | |
</dependency> | |
<!-- Tester component --> | |
<dependency> | |
<groupId>com.gwtplatform</groupId> | |
<artifactId>gwtp-tester</artifactId> | |
<version>${gwtp.version}</version> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment