12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.pig4cloud</groupId>
- <artifactId>pigx-visual</artifactId>
- <version>${pigx.version}</version>
- </parent>
- <artifactId>pigx-codegen</artifactId>
- <version>${pigx.version}</version>
- <packaging>jar</packaging>
- <name>pigx-codegen</name>
- <description>代码生成模块</description>
- <dependencies>
- <!--配置中心客户端-->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-config</artifactId>
- </dependency>
- <!--mybatis-->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>${mbp.boot.version}</version>
- </dependency>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- </dependency>
- <!--common-->
- <dependency>
- <groupId>com.pig4cloud</groupId>
- <artifactId>pigx-common-core</artifactId>
- <version>${pigx.version}</version>
- </dependency>
- <!--swagger 内置安全模块-->
- <dependency>
- <groupId>com.pig4cloud</groupId>
- <artifactId>pigx-common-swagger</artifactId>
- <version>${pigx.version}</version>
- </dependency>
- <!--代码生成模板引擎-->
- <dependency>
- <artifactId>velocity</artifactId>
- <groupId>org.apache.velocity</groupId>
- <version>${velocity.version}</version>
- </dependency>
- <!--web 模块-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- <exclusions>
- <!--排除tomcat依赖-->
- <exclusion>
- <artifactId>spring-boot-starter-tomcat</artifactId>
- <groupId>org.springframework.boot</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <!--undertow容器-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-undertow</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <finalName>${project.name}</finalName>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|