stream-dependencies
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.dromara.stream-query</groupId>
<artifactId>stream-dependencies</artifactId>
<version>3.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one or more
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~ The ASF licenses this file to You under the Apache License, Version 2.0
~ (the "License"); you may not use this file except in compliance with
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara.stream-query</groupId>
<artifactId>stream-query</artifactId>
<version>3.0.0</version>
</parent>
<groupId>org.dromara.stream-query</groupId>
<artifactId>stream-dependencies</artifactId>
<version>3.0.0</version>
<packaging>pom</packaging>
<name>Stream Dependencies</name>
<description>Stream Dependencies</description>
<url>https://github.com/dromara/stream-query</url>
<licenses>
<license>
<name>Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>VampireAchao</name>
<email>vampireachao@dromara.org</email>
<organization>dromara.org</organization>
<roles>
<role>author</role>
</roles>
</developer>
<developer>
<name>Cizai_</name>
<email>zang@dromara.org</email>
<organization>dromara.org</organization>
<roles>
<role>committer</role>
</roles>
</developer>
<developer>
<name>KamTo Hung</name>
<email>kamtohung@gmail.com</email>
<organization>dromara.org</organization>
<roles>
<role>committer</role>
</roles>
</developer>
<developer>
<name>Cason</name>
<email>1125193113@qq.com</email>
<organization>dromara.org</organization>
<roles>
<role>committer</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git@github.com:dromara/stream-query.git</connection>
<developerConnection>scm:git@github.com:dromara/stream-query.git</developerConnection>
<url>git@github.com:dromara/stream-query.git</url>
</scm>
<properties>
<lombok.version>1.18.30</lombok.version>
<ttl.version>2.14.5</ttl.version>
<junit.version>5.10.2</junit.version>
<spring-boot.version>2.7.0</spring-boot.version>
<jmh.version>1.37</jmh.version>
<mybatis-plus.version>3.5.7</mybatis-plus.version>
<h2.version>2.2.224</h2.version>
<mysql.version>8.0.33</mysql.version>
<byte-buddy.version>1.14.12</byte-buddy.version>
<pgsql.version>42.7.3</pgsql.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.dromara.stream-query</groupId>
<artifactId>stream-core</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>org.dromara.stream-query</groupId>
<artifactId>stream-plugin-mybatis-plus</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>${mybatis-plus.version}</version>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>${byte-buddy.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>${h2.version}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.version}</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${pgsql.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-json</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter-test</artifactId>
<version>${mybatis-plus.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>transmittable-thread-local</artifactId>
<version>${ttl.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>${jmh.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>${jmh.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>