pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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>1.7.0</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>1.7.0</version>
  34. </dependency>
  35. <!--swagger-->
  36. <dependency>
  37. <groupId>com.pig4cloud</groupId>
  38. <artifactId>pigx-common-swagger</artifactId>
  39. <version>1.7.0</version>
  40. </dependency>
  41. <!--安全模块-->
  42. <dependency>
  43. <groupId>com.pig4cloud</groupId>
  44. <artifactId>pigx-common-security</artifactId>
  45. <version>1.7.0</version>
  46. </dependency>
  47. <!--代码生成模板引擎-->
  48. <dependency>
  49. <artifactId>velocity</artifactId>
  50. <groupId>org.apache.velocity</groupId>
  51. <version>${velocity.version}</version>
  52. </dependency>
  53. <!--web 模块-->
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-web</artifactId>
  57. <exclusions>
  58. <!--排除tomcat依赖-->
  59. <exclusion>
  60. <artifactId>spring-boot-starter-tomcat</artifactId>
  61. <groupId>org.springframework.boot</groupId>
  62. </exclusion>
  63. </exclusions>
  64. </dependency>
  65. <!--undertow容器-->
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-undertow</artifactId>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-maven-plugin</artifactId>
  76. </plugin>
  77. <plugin>
  78. <groupId>com.spotify</groupId>
  79. <artifactId>docker-maven-plugin</artifactId>
  80. </plugin>
  81. </plugins>
  82. </build>
  83. </project>