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