pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. <properties>
  16. <mybatis.spring.boot.version>1.3.0</mybatis.spring.boot.version>
  17. <commons.lang.version>2.6</commons.lang.version>
  18. <commons.io.version>2.5</commons.io.version>
  19. <commons.configuration.version>1.10</commons.configuration.version>
  20. <velocity.version>1.7</velocity.version>
  21. </properties>
  22. <dependencies>
  23. <!--配置中心客户端-->
  24. <dependency>
  25. <groupId>org.springframework.cloud</groupId>
  26. <artifactId>spring-cloud-starter-config</artifactId>
  27. </dependency>
  28. <!--mybatis-->
  29. <dependency>
  30. <groupId>com.baomidou</groupId>
  31. <artifactId>mybatis-plus-boot-starter</artifactId>
  32. <version>${mbp.boot.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>mysql</groupId>
  36. <artifactId>mysql-connector-java</artifactId>
  37. </dependency>
  38. <!--common-->
  39. <dependency>
  40. <groupId>com.pig4cloud</groupId>
  41. <artifactId>pigx-common-core</artifactId>
  42. <version>${pigx.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.pig4cloud</groupId>
  46. <artifactId>pigx-common-swagger</artifactId>
  47. <version>${pigx.version}</version>
  48. </dependency>
  49. <!--spring security 、oauth、jwt依赖-->
  50. <dependency>
  51. <groupId>org.springframework.cloud</groupId>
  52. <artifactId>spring-cloud-starter-security</artifactId>
  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. </plugins>
  85. </build>
  86. </project>