Sfoglia il codice sorgente

Arrange dependency tabs

Sherwin 7 anni fa
parent
commit
21033389d6

+ 0 - 3
GabonTelMobicashMobileAppHelper/.checkstyle

@@ -1,3 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<fileset-config file-format-version="1.2.0" simple-config="false" sync-formatter="false"/>

+ 60 - 57
GabonTelMobicashMobileAppHelper/pom.xml

@@ -1,67 +1,70 @@
-<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>
+<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>
+
+
+	<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>
-  <dependencies>
-	  <dependency>
-		<groupId>com.psi.common</groupId>
-		<artifactId>transactions</artifactId>
-		<version>${project.parent.version}</version>
-	</dependency>
+
+	<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>
+	<dependencies>
+		<dependency>
+			<groupId>com.psi.common</groupId>
+			<artifactId>transactions</artifactId>
+			<version>${project.parent.version}</version>
+		</dependency>
 		<dependency>
-	  <groupId>org.jboss.spec.javax.ejb</groupId>
-	  <artifactId>jboss-ejb-api_3.2_spec</artifactId>
-	  <scope>provided</scope>
-	</dependency>
-	
-	<dependency>
-    <groupId>com.googlecode.json-simple</groupId>
-    <artifactId>json-simple</artifactId>
-    <version>1.1.1</version>
-	</dependency>
-	
-	<dependency>
-  <groupId>org.jboss.resteasy</groupId>
-  <artifactId>resteasy-client</artifactId>
-  <scope>provided</scope>
-	</dependency>
-	
-		
-  </dependencies>
+			<groupId>org.jboss.spec.javax.ejb</groupId>
+			<artifactId>jboss-ejb-api_3.2_spec</artifactId>
+			<scope>provided</scope>
+		</dependency>
+
+		<dependency>
+			<groupId>com.googlecode.json-simple</groupId>
+			<artifactId>json-simple</artifactId>
+			<version>1.1.1</version>
+		</dependency>
+
+		<dependency>
+			<groupId>org.jboss.resteasy</groupId>
+			<artifactId>resteasy-client</artifactId>
+			<scope>provided</scope>
+		</dependency>
+
+
+
+	</dependencies>
 </project>