pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>cn.itlym.platform</groupId>
  7. <artifactId>shoulder-platform</artifactId>
  8. <version>1.0-SNAPSHOT</version><!-- shoulder-platform-version -->
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>shoulder-generator</artifactId>
  12. <name>shoulder-generator:代码生成器</name>
  13. <description>代码生成器</description>
  14. <dependencyManagement>
  15. <dependencies>
  16. <dependency>
  17. <groupId>cn.itlym</groupId>
  18. <artifactId>shoulder-parent</artifactId>
  19. <version>0.8-SNAPSHOT</version><!-- shoulder-version -->
  20. <type>pom</type>
  21. <scope>import</scope>
  22. </dependency>
  23. </dependencies>
  24. </dependencyManagement>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.apache.velocity</groupId>
  28. <artifactId>velocity</artifactId>
  29. <version>1.7</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>commons-io</groupId>
  33. <artifactId>commons-io</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>commons-configuration</groupId>
  37. <artifactId>commons-configuration</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-jdbc</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.baomidou</groupId>
  45. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.baomidou</groupId>
  49. <artifactId>mybatis-plus-generator</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.github.pagehelper</groupId>
  53. <artifactId>pagehelper-spring-boot-starter</artifactId>
  54. </dependency>
  55. <!-- 默认使用 mysql -->
  56. <dependency>
  57. <groupId>com.mysql</groupId>
  58. <artifactId>mysql-connector-j</artifactId>
  59. </dependency>
  60. <!-- 彩色日志等,比 spring-boot-starter-web 更简便 -->
  61. <dependency>
  62. <groupId>cn.itlym</groupId>
  63. <artifactId>shoulder-starter-web</artifactId>
  64. </dependency>
  65. </dependencies>
  66. <build>
  67. <resources>
  68. <resource>
  69. <directory>src/main/java</directory>
  70. <excludes>
  71. <exclude>**/*.java</exclude>
  72. </excludes>
  73. </resource>
  74. <resource>
  75. <directory>src/main/resources</directory>
  76. <includes>
  77. <include>**/*.*</include>
  78. </includes>
  79. </resource>
  80. </resources>
  81. </build>
  82. </project>