|
|
@@ -0,0 +1,41 @@
|
|
|
+<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>
|
|
|
+ <groupId>com.psi.common</groupId>
|
|
|
+ <artifactId>common-libs</artifactId>
|
|
|
+ <version>1.0.0</version>
|
|
|
+ </parent>
|
|
|
+
|
|
|
+
|
|
|
+ <groupId>GabonTelMobicashMobileAppHelper</groupId>
|
|
|
+ <artifactId>GabonTelMobicashMobileAppHelper</artifactId>
|
|
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
+ <packaging>war</packaging>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+
|
|
|
+ <checkstyle.skip>true</checkstyle.skip>
|
|
|
+
|
|
|
+ </properties>
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <sourceDirectory>src</sourceDirectory>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <version>3.7.0</version>
|
|
|
+ <configuration>
|
|
|
+ <source>1.8</source>
|
|
|
+ <target>1.8</target>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <artifactId>maven-war-plugin</artifactId>
|
|
|
+ <version>3.0.0</version>
|
|
|
+ <configuration>
|
|
|
+ <warSourceDirectory>WebContent</warSourceDirectory>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+</project>
|