pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. <dependency>
  19. <groupId>com.baomidou</groupId>
  20. <artifactId>mybatis-plus-core</artifactId>
  21. <version>3.1.0</version>
  22. </dependency>
  23. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  24. <dependency>
  25. <groupId>com.alibaba</groupId>
  26. <artifactId>fastjson</artifactId>
  27. <version>1.2.75</version>
  28. </dependency>
  29. <!-- https://mvnrepository.com/artifact/com.thoughtworks.xstream/xstream -->
  30. <dependency>
  31. <groupId>com.thoughtworks.xstream</groupId>
  32. <artifactId>xstream</artifactId>
  33. <version>1.4.16</version>
  34. </dependency>
  35. </dependencies>
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <artifactId>maven-war-plugin</artifactId>
  40. <configuration>
  41. <warSourceDirectory>src/main/webapp</warSourceDirectory>
  42. <failOnMissingWebXml>false</failOnMissingWebXml>
  43. <webResources>
  44. <resource>
  45. <directory>src/main/resources</directory>
  46. <targetPath>WEB-INF/classes</targetPath>
  47. <filtering>true</filtering>
  48. </resource>
  49. </webResources>
  50. </configuration>
  51. </plugin>
  52. </plugins>
  53. </build>
  54. </project>