pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>com.psi.common</groupId>
  5. <artifactId>common-libs</artifactId>
  6. <version>1.0.0</version>
  7. </parent>
  8. <groupId>GabonTelMobicashMobileAppHelper</groupId>
  9. <artifactId>GabonTelMobicashMobileAppHelper</artifactId>
  10. <version>0.0.1-SNAPSHOT</version>
  11. <packaging>war</packaging>
  12. <properties>
  13. <checkstyle.skip>true</checkstyle.skip>
  14. </properties>
  15. <build>
  16. <sourceDirectory>src</sourceDirectory>
  17. <plugins>
  18. <plugin>
  19. <artifactId>maven-compiler-plugin</artifactId>
  20. <version>3.7.0</version>
  21. <configuration>
  22. <source>1.8</source>
  23. <target>1.8</target>
  24. </configuration>
  25. </plugin>
  26. <plugin>
  27. <artifactId>maven-war-plugin</artifactId>
  28. <version>3.0.0</version>
  29. <configuration>
  30. <warSourceDirectory>WebContent</warSourceDirectory>
  31. </configuration>
  32. </plugin>
  33. </plugins>
  34. </build>
  35. <dependencies>
  36. <dependency>
  37. <groupId>com.psi.common</groupId>
  38. <artifactId>transactions</artifactId>
  39. <version>${project.parent.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.jboss.spec.javax.ejb</groupId>
  43. <artifactId>jboss-ejb-api_3.2_spec</artifactId>
  44. <scope>provided</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.googlecode.json-simple</groupId>
  48. <artifactId>json-simple</artifactId>
  49. <version>1.1.1</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.jboss.resteasy</groupId>
  53. <artifactId>resteasy-client</artifactId>
  54. <scope>provided</scope>
  55. </dependency>
  56. </dependencies>
  57. </project>