12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?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">
- <!-- <parent>-->
- <!-- <groupId>cc.iotkit</groupId>-->
- <!-- <artifactId>iot-module</artifactId>-->
- <!-- <version>${revision}</version>-->
- <!-- </parent>-->
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>8</source>
- <target>8</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>iot-generator</artifactId>
- <version>1.0.0</version>
- <description>
- generator 代码生成
- </description>
- <properties>
- <dynamic-ds.version>3.6.1</dynamic-ds.version>
- <mapstruct-plus.version>1.2.1</mapstruct-plus.version>
- <mapstruct-plus.lombok.version>0.2.0</mapstruct-plus.lombok.version>
- <spring-boot.mybatis>3.0.1</spring-boot.mybatis>
- <mybatis-plus.version>3.5.3.1</mybatis-plus.version>
- </properties>
- <dependencies>
- <!-- 通用工具-->
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-core</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-doc</artifactId>
- </dependency>
- <!--常用工具类 -->
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-web</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-log</artifactId>
- </dependency>
- <!--velocity代码生成使用模板 -->
- <dependency>
- <groupId>org.apache.velocity</groupId>
- <artifactId>velocity-engine-core</artifactId>
- </dependency>
- <!-- dynamic-datasource 多数据源-->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
- <version>${dynamic-ds.version}</version>
- </dependency>
- <dependency>
- <groupId>org.mybatis.spring.boot</groupId>
- <artifactId>mybatis-spring-boot-starter</artifactId>
- <version>${spring-boot.mybatis}</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>${mybatis-plus.version}</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-annotation</artifactId>
- <version>${mybatis-plus.version}</version>
- </dependency>
- </dependencies>
- </project>
|