pom.xml 2.6 KB

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