pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.pig4cloud</groupId>
  7. <artifactId>pigx-visual</artifactId>
  8. <version>${pigx.version}</version>
  9. </parent>
  10. <artifactId>pigx-codegen</artifactId>
  11. <packaging>jar</packaging>
  12. <description>代码生成模块</description>
  13. <dependencies>
  14. <!--配置中心客户端-->
  15. <dependency>
  16. <groupId>org.springframework.cloud</groupId>
  17. <artifactId>spring-cloud-starter-config</artifactId>
  18. </dependency>
  19. <!--mybatis-->
  20. <dependency>
  21. <groupId>com.baomidou</groupId>
  22. <artifactId>mybatis-plus-boot-starter</artifactId>
  23. <version>${mbp.boot.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>mysql</groupId>
  27. <artifactId>mysql-connector-java</artifactId>
  28. </dependency>
  29. <!--common-->
  30. <dependency>
  31. <groupId>com.pig4cloud</groupId>
  32. <artifactId>pigx-common-core</artifactId>
  33. <version>${pigx.version}</version>
  34. </dependency>
  35. <!--swagger 内置安全模块-->
  36. <dependency>
  37. <groupId>com.pig4cloud</groupId>
  38. <artifactId>pigx-common-swagger</artifactId>
  39. <version>${pigx.version}</version>
  40. </dependency>
  41. <!--代码生成模板引擎-->
  42. <dependency>
  43. <artifactId>velocity</artifactId>
  44. <groupId>org.apache.velocity</groupId>
  45. <version>${velocity.version}</version>
  46. </dependency>
  47. <!--web 模块-->
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-web</artifactId>
  51. <exclusions>
  52. <!--排除tomcat依赖-->
  53. <exclusion>
  54. <artifactId>spring-boot-starter-tomcat</artifactId>
  55. <groupId>org.springframework.boot</groupId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. <!--undertow容器-->
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-undertow</artifactId>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-maven-plugin</artifactId>
  70. </plugin>
  71. <plugin>
  72. <groupId>com.spotify</groupId>
  73. <artifactId>docker-maven-plugin</artifactId>
  74. </plugin>
  75. </plugins>
  76. </build>
  77. </project>