pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>engineering</artifactId>
  7. <groupId>io.yichepei</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>io.yichepei.engineering</groupId>
  12. <artifactId>engineering-common</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <packaging>jar</packaging>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework</groupId>
  18. <artifactId>spring-beans</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.baomidou</groupId>
  22. <artifactId>mybatis-plus</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>commons-lang</groupId>
  26. <artifactId>commons-lang</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>commons-io</groupId>
  30. <artifactId>commons-io</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>commons-codec</groupId>
  34. <artifactId>commons-codec</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework</groupId>
  38. <artifactId>spring-context</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>commons-httpclient</groupId>
  42. <artifactId>commons-httpclient</artifactId>
  43. <version>3.1</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.xiaoleilu</groupId>
  47. <artifactId>hutool-core</artifactId>
  48. <version>3.1.2</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.hibernate</groupId>
  52. <artifactId>hibernate-validator</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.shiro</groupId>
  56. <artifactId>shiro-core</artifactId>
  57. </dependency>
  58. </dependencies>
  59. </project>