| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <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.1</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>
- <finalName>Test_210_GabonTelMobicashMobileAppHelper</finalName>
- </build>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.wildfly</groupId>
- <artifactId>wildfly-ejb-client-bom</artifactId>
- <version>12.0.0.Final</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.wildfly</groupId>
- <artifactId>wildfly-ejb-client-bom</artifactId>
- <type>pom</type>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.wildfly.wildfly-http-client</groupId>
- <artifactId>wildfly-http-ejb-client</artifactId>
- <version>1.0.11.Final</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.wildfly.wildfly-http-client</groupId>
- <artifactId>wildfly-http-naming-client</artifactId>
- <version>1.0.11.Final</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.wildfly.wildfly-http-client</groupId>
- <artifactId>wildfly-http-client-common</artifactId>
- <version>1.0.11.Final</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.jboss.remoting</groupId>
- <artifactId>jboss-remoting</artifactId>
- <version>5.0.8.Final</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.jboss.logging</groupId>
- <artifactId>jboss-logging</artifactId>
- <scope>provided</scope>
- </dependency>
- <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>
-
- <dependency>
- <groupId>com.psi.ussd</groupId>
- <artifactId>ussd-interfaces</artifactId>
- <version>1.0.1</version>
- </dependency>
- </dependencies>
- </project>
|