/example/pom.xml
XML | 64 lines | 58 code | 3 blank | 3 comment | 0 complexity | ddc5561e1aa4bdad1df43130eeb264be MD5 | raw file
- <?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/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>parent</artifactId>
- <groupId>com.googlecode.gwtrpccommlayer</groupId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.googlecode.gwtrpccommlayer</groupId>
- <artifactId>example</artifactId>
- <name>GRCL Example</name>
- <packaging>war</packaging>
- <dependencies>
- <dependency>
- <groupId>com.googlecode</groupId>
- <artifactId>gwtrpccommlayer</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- </dependencies>
- <build>
- <!-- <outputDirectory>
- ${project.build.directory}/${project.build.finalName}
- </outputDirectory>-->
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-war-plugin</artifactId>
- <version>2.1-beta-1</version>
- <configuration>
- <webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
- </configuration>
- </plugin><plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>gwt-maven-plugin</artifactId>
- <version>2.1.0</version>
- <executions>
- <execution>
- <goals>
- </goals>
- </execution>
- </executions>
- <configuration>
- <buildOutputDirectory>${project.build.directory}/${project.build.finalName}</buildOutputDirectory>
- <hostedWebapp>${project.build.directory}/${project.build.finalName}</hostedWebapp>
- <webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
- <runTarget>Example.html</runTarget>
- </configuration>
- </plugin><plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <version>2.2-beta-5</version>
- <configuration>
- <descriptorRefs>
- <descriptorRef>jar-with-dependencies</descriptorRef>
- </descriptorRefs>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>