1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?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>org.jetlinks.pro</groupId>
- <artifactId>jetlinks-parent</artifactId>
- <version>1.20.0-SNAPSHOT</version>
- <relativePath>../../jetlinks-parent</relativePath>
- </parent>
- <artifactId>logging-manager</artifactId>
- <dependencies>
- <dependency>
- <groupId>org.hswebframework.web</groupId>
- <artifactId>hsweb-access-logging-aop</artifactId>
- <version>${hsweb.framework.version}</version>
- </dependency>
- <dependency>
- <groupId>org.hswebframework.web</groupId>
- <artifactId>hsweb-starter</artifactId>
- <version>${hsweb.framework.version}</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.springframework.boot.experimental</groupId>-->
- <!-- <artifactId>spring-boot-starter-data-r2dbc</artifactId>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>org.jetlinks.pro</groupId>
- <artifactId>logging-component</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>io.r2dbc</groupId>
- <artifactId>r2dbc-h2</artifactId>
- </dependency>
- <dependency>
- <groupId>org.hswebframework</groupId>
- <artifactId>hsweb-easy-orm-rdb</artifactId>
- </dependency>
- <dependency>
- <groupId>org.hswebframework</groupId>
- <artifactId>reactor-excel</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jetlinks.pro</groupId>
- <artifactId>test-component</artifactId>
- <version>${project.version}</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|