1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?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>jetlinks-components</artifactId>
- <groupId>org.jetlinks.community</groupId>
- <version>2.0.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>common-component</artifactId>
- <dependencies>
- <dependency>
- <groupId>org.jetlinks</groupId>
- <artifactId>jetlinks-core</artifactId>
- <version>${jetlinks.version}</version>
- </dependency>
- <dependency>
- <groupId>org.hswebframework.web</groupId>
- <artifactId>hsweb-authorization-api</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>io.micrometer</groupId>
- <artifactId>micrometer-core</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jetlinks</groupId>
- <artifactId>reactor-ql</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-webflux</artifactId>
- </dependency>
- <dependency>
- <groupId>de.ruedigermoeller</groupId>
- <artifactId>fst</artifactId>
- <version>2.57</version>
- </dependency>
- <dependency>
- <groupId>com.h2database</groupId>
- <artifactId>h2</artifactId>
- </dependency>
- <dependency>
- <groupId>com.github.ben-manes.caffeine</groupId>
- <artifactId>caffeine</artifactId>
- </dependency>
- <dependency>
- <groupId>com.cronutils</groupId>
- <artifactId>cron-utils</artifactId>
- <version>9.2.0</version>
- <scope>compile</scope>
- <exclusions>
- <exclusion>
- <groupId>org.glassfish</groupId>
- <artifactId>javax.el</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- </project>
|