1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?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>
- <artifactId>jeecg-boot-parent</artifactId>
- <groupId>org.jeecgframework.boot</groupId>
- <version>3.4.3</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>jeecg-module-interlock</artifactId>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <!-- mapstruct版本依赖 -->
- <mapstruct.version>1.4.2.Final</mapstruct.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.jeecgframework.boot</groupId>
- <artifactId>jeecg-boot-base-core</artifactId>
- </dependency>
- <dependency>
- <groupId>com.zendesk</groupId>
- <artifactId>mysql-binlog-connector-java</artifactId>
- <version>0.27.1</version> <!--2022.09.17版的-->
- </dependency>
- <!-- mapstruct -->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok-mapstruct-binding</artifactId>
- <version>0.2.0</version>
- </dependency>
- <dependency>
- <groupId>org.mapstruct</groupId>
- <artifactId>mapstruct</artifactId>
- <version>${mapstruct.version}</version>
- </dependency>
- <dependency>
- <groupId>org.mapstruct</groupId>
- <artifactId>mapstruct-processor</artifactId>
- <version>${mapstruct.version}</version>
- </dependency>
- <dependency>
- <groupId>org.jeecgframework.boot</groupId>
- <artifactId>jeecg-system-biz</artifactId>
- </dependency>
- </dependencies>
- </project>
|