pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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>2.5.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. <!--数据操作-->
  20. <dependency>
  21. <groupId>com.pig4cloud</groupId>
  22. <artifactId>pigx-common-data</artifactId>
  23. </dependency>
  24. <!--mybatis-->
  25. <dependency>
  26. <groupId>com.baomidou</groupId>
  27. <artifactId>mybatis-plus-boot-starter</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>mysql</groupId>
  31. <artifactId>mysql-connector-java</artifactId>
  32. </dependency>
  33. <!--common-->
  34. <dependency>
  35. <groupId>com.pig4cloud</groupId>
  36. <artifactId>pigx-common-core</artifactId>
  37. </dependency>
  38. <!--swagger-->
  39. <dependency>
  40. <groupId>com.pig4cloud</groupId>
  41. <artifactId>pigx-common-swagger</artifactId>
  42. </dependency>
  43. <!--安全模块-->
  44. <dependency>
  45. <groupId>com.pig4cloud</groupId>
  46. <artifactId>pigx-common-security</artifactId>
  47. </dependency>
  48. <!--代码生成模板引擎-->
  49. <dependency>
  50. <artifactId>velocity</artifactId>
  51. <groupId>org.apache.velocity</groupId>
  52. <version>${velocity.version}</version>
  53. </dependency>
  54. <!--web 模块-->
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-web</artifactId>
  58. <exclusions>
  59. <!--排除tomcat依赖-->
  60. <exclusion>
  61. <artifactId>spring-boot-starter-tomcat</artifactId>
  62. <groupId>org.springframework.boot</groupId>
  63. </exclusion>
  64. </exclusions>
  65. </dependency>
  66. <!--undertow容器-->
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-undertow</artifactId>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-maven-plugin</artifactId>
  77. </plugin>
  78. <plugin>
  79. <groupId>com.spotify</groupId>
  80. <artifactId>docker-maven-plugin</artifactId>
  81. <version>${docker.plugin.version}</version>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. </project>