pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.2.RELEASE</version>
  9. </parent>
  10. <groupId>cn.kdan</groupId>
  11. <artifactId>workflow_streamliner</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-test</artifactId>
  25. <scope>test</scope>
  26. </dependency>
  27. <!--<dependency>
  28. <groupId>org.mybatis</groupId>
  29. <artifactId>mybatis-spring</artifactId>
  30. <version>2.0.7</version>
  31. </dependency>-->
  32. <!--mysql-->
  33. <dependency>
  34. <groupId>mysql</groupId>
  35. <artifactId>mysql-connector-java</artifactId>
  36. </dependency>
  37. <!--mybatis plus-->
  38. <dependency>
  39. <groupId>com.baomidou</groupId>
  40. <artifactId>mybatis-plus-boot-starter</artifactId>
  41. <version>3.5.2</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.baomidou</groupId>
  45. <artifactId>mybatis-plus-annotation</artifactId>
  46. <version>3.5.2</version>
  47. <scope>compile</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.sun.mail</groupId>
  51. <artifactId>jakarta.mail</artifactId>
  52. <version>1.6.7</version>
  53. </dependency>
  54. <!-- <dependency>-->
  55. <!-- <groupId>org.junit.jupiter</groupId>-->
  56. <!-- <artifactId>junit-jupiter-api</artifactId>-->
  57. <!-- </dependency>-->
  58. <dependency>
  59. <groupId>org.projectlombok</groupId>
  60. <artifactId>lombok</artifactId>
  61. <version>1.18.8</version>
  62. <scope>provided</scope>
  63. </dependency>
  64. <!--hutool工具包-->
  65. <dependency>
  66. <groupId>cn.hutool</groupId>
  67. <artifactId>hutool-all</artifactId>
  68. <version>5.8.2</version>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <finalName>${artifactId}</finalName>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-maven-plugin</artifactId>
  77. </plugin>
  78. </plugins>
  79. </build>
  80. </project>