Skip to content

Instantly share code, notes, and snippets.

@msrbharath
Created June 28, 2018 03:45
Show Gist options
  • Select an option

  • Save msrbharath/5382ad28effc412ead589f643fd2f6df to your computer and use it in GitHub Desktop.

Select an option

Save msrbharath/5382ad28effc412ead589f643fd2f6df to your computer and use it in GitHub Desktop.
<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>
<groupId>com.bharath</groupId>
<artifactId>WgsWar</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>WgsWar Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
</dependencies>
<build>
<finalName>WgsWar</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.2</version>
<configuration>
<webResources>
<resource>
<!-- this is relative to the pom.xml directory -->
<directory>../../WgsUI/src/main/webapp/WGSClient/dist/WGSClient</directory>
</resource>
</webResources>
</configuration>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment