Skip to content

Instantly share code, notes, and snippets.

@tmontoya-ias
Created May 18, 2016 00:50
Show Gist options
  • Save tmontoya-ias/0b15282347803e809bb85fc37bc34285 to your computer and use it in GitHub Desktop.
Save tmontoya-ias/0b15282347803e809bb85fc37bc34285 to your computer and use it in GitHub Desktop.
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>LogisticTracking</artifactId>
<groupId>com.idm</groupId>
<version>1.0</version>
</parent>
<groupId>com.idm</groupId>
<artifactId>LogisticTrackingAdmin</artifactId>
<packaging>war</packaging>
<version>1.0</version>
<name>LogisticTrackingAdmin</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.vcsoft</groupId>
<artifactId>VcsoftLib</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.idm</groupId>
<artifactId>LogisticTrackingWeb</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>Dev</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<resources>
<resource>
<directory>src/main/resources/dev</directory>
<targetPath>${configuration.target.path}</targetPath>
</resource>
</resources>
</build>
</profile>
<profile>
<id>GoLive</id>
<build>
<resources>
<resource>
<directory>src/main/resources/gl</directory>
<targetPath>${configuration.target.path}</targetPath>
</resource>
</resources>
</build>
</profile>
</profiles>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment