pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.psi.common</groupId>
  7. <artifactId>common-libs</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <groupId>GabonTelMobicashMobileAppHelper</groupId>
  11. <artifactId>GabonTelMobicashMobileAppHelper</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <packaging>war</packaging>
  14. <properties>
  15. <checkstyle.skip>true</checkstyle.skip>
  16. </properties>
  17. <build>
  18. <sourceDirectory>src</sourceDirectory>
  19. <plugins>
  20. <plugin>
  21. <artifactId>maven-compiler-plugin</artifactId>
  22. <version>3.7.0</version>
  23. <configuration>
  24. <source>1.8</source>
  25. <target>1.8</target>
  26. </configuration>
  27. </plugin>
  28. <plugin>
  29. <artifactId>maven-war-plugin</artifactId>
  30. <version>3.0.0</version>
  31. <configuration>
  32. <warSourceDirectory>WebContent</warSourceDirectory>
  33. </configuration>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. <dependencies>
  38. <dependency>
  39. <groupId>com.psi.common</groupId>
  40. <artifactId>transactions</artifactId>
  41. <version>${project.parent.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.jboss.spec.javax.ejb</groupId>
  45. <artifactId>jboss-ejb-api_3.2_spec</artifactId>
  46. <scope>provided</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.googlecode.json-simple</groupId>
  50. <artifactId>json-simple</artifactId>
  51. <version>1.1.1</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.jboss.resteasy</groupId>
  55. <artifactId>resteasy-client</artifactId>
  56. <scope>provided</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.psi.ussd</groupId>
  60. <artifactId>ussd-interfaces</artifactId>
  61. <scope>provided</scope>
  62. <version>1.0.1</version>
  63. </dependency>
  64. </dependencies>
  65. </project>