pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. <parent>
  4. <groupId>com.platomix</groupId>
  5. <artifactId>platomix-pom</artifactId>
  6. <version>1.0.0</version>
  7. <relativePath />
  8. </parent>
  9. <artifactId>platomix-gmetry-common</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>org.springframework</groupId>
  13. <artifactId>spring-web</artifactId>
  14. </dependency>
  15. <dependency>
  16. <groupId>javax.servlet</groupId>
  17. <artifactId>javax.servlet-api</artifactId>
  18. <scope>provided</scope>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.alibaba.fastjson2</groupId>
  22. <artifactId>fastjson2</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.alibaba</groupId>
  26. <artifactId>easyexcel</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>cn.hutool</groupId>
  30. <artifactId>hutool-all</artifactId>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-source-plugin</artifactId>
  38. </plugin>
  39. </plugins>
  40. </build>
  41. </project>