pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>net.p0f.samples.rhpam-fuse-integration</groupId>
  4. <artifactId>ws-customer-data</artifactId>
  5. <version>1.0.0</version>
  6. <properties>
  7. <maven.compiler.source>1.8</maven.compiler.source>
  8. <maven.compiler.target>1.8</maven.compiler.target>
  9. </properties>
  10. <packaging>war</packaging>
  11. <dependencyManagement>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.jboss.bom</groupId>
  15. <artifactId>jboss-eap-javaee7-with-tools</artifactId>
  16. <version>7.1.6.GA</version>
  17. <type>pom</type>
  18. <scope>import</scope>
  19. </dependency>
  20. </dependencies>
  21. </dependencyManagement>
  22. <dependencies>
  23. <dependency>
  24. <groupId>javax.enterprise</groupId>
  25. <artifactId>cdi-api</artifactId>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.jboss.resteasy</groupId>
  30. <artifactId>resteasy-jaxrs</artifactId>
  31. <scope>provided</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>net.p0f.samples.rhpam-fuse-integration</groupId>
  35. <artifactId>shared-data-model</artifactId>
  36. <version>1.0.0</version>
  37. </dependency>
  38. </dependencies>
  39. <build>
  40. <plugins>
  41. <plugin>
  42. <groupId>org.apache.maven.plugins</groupId>
  43. <artifactId>maven-war-plugin</artifactId>
  44. <version>2.6</version>
  45. <configuration>
  46. <failOnMissingWebXml>false</failOnMissingWebXml>
  47. </configuration>
  48. </plugin>
  49. </plugins>
  50. </build>
  51. </project>