pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. <parent>
  3. <artifactId>platform</artifactId>
  4. <groupId>com.platform</groupId>
  5. <version>1.0.0</version>
  6. </parent>
  7. <modelVersion>4.0.0</modelVersion>
  8. <artifactId>platform-shop</artifactId>
  9. <packaging>war</packaging>
  10. <name>platform-shop Maven Webapp</name>
  11. <version>1.0.0</version>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.platform</groupId>
  15. <artifactId>platform-common</artifactId>
  16. <version>1.0.0</version>
  17. </dependency>
  18. </dependencies>
  19. <build>
  20. <plugins>
  21. <plugin>
  22. <artifactId>maven-war-plugin</artifactId>
  23. <configuration>
  24. <warSourceDirectory>src/main/webapp</warSourceDirectory>
  25. <failOnMissingWebXml>false</failOnMissingWebXml>
  26. <webResources>
  27. <resource>
  28. <directory>src/main/resources</directory>
  29. <targetPath>WEB-INF/classes</targetPath>
  30. <filtering>true</filtering>
  31. </resource>
  32. </webResources>
  33. </configuration>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. </project>