jetlinks-community/jetlinks-components/common-component/pom.xml

77 lines
2.4 KiB
XML
Raw Normal View History

2020-02-03 02:35:53 +00:00
<?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>
2023-04-20 02:09:58 +00:00
<version>2.1.0-SNAPSHOT</version>
2020-02-03 02:35:53 +00:00
</parent>
<modelVersion>4.0.0</modelVersion>
2020-02-14 02:12:01 +00:00
<artifactId>common-component</artifactId>
2020-02-03 02:35:53 +00:00
<dependencies>
<dependency>
<groupId>org.jetlinks</groupId>
<artifactId>jetlinks-core</artifactId>
<version>${jetlinks.version}</version>
</dependency>
<dependency>
2020-02-14 02:12:01 +00:00
<groupId>org.hswebframework.web</groupId>
<artifactId>hsweb-authorization-api</artifactId>
<version>${hsweb.framework.version}</version>
2020-02-03 02:35:53 +00:00
</dependency>
2020-02-14 02:12:01 +00:00
<dependency>
<groupId>org.hswebframework.web</groupId>
<artifactId>hsweb-starter</artifactId>
<version>${hsweb.framework.version}</version>
</dependency>
2020-02-03 02:35:53 +00:00
2020-02-14 02:12:01 +00:00
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-core</artifactId>
</dependency>
2021-07-30 11:28:09 +00:00
2020-09-26 04:03:03 +00:00
<dependency>
<groupId>org.jetlinks</groupId>
<artifactId>reactor-ql</artifactId>
</dependency>
2021-07-30 11:28:09 +00:00
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webflux</artifactId>
</dependency>
2022-09-20 07:34:23 +00:00
<dependency>
<groupId>de.ruedigermoeller</groupId>
<artifactId>fst</artifactId>
<version>2.57</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
2022-09-26 09:25:24 +00:00
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
</dependency>
2022-09-28 09:56:32 +00:00
<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>
2020-02-14 02:12:01 +00:00
</dependencies>
2020-02-03 02:35:53 +00:00
</project>