| POM: |
Show
hide
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2019 The JoyQueue Authors.
Licensed 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 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>joyqueue-data</artifactId>
<groupId>org.joyqueue</groupId>
<version>4.2.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>joyqueue-data-service</artifactId>
<name>JoyQueue-Data-Service</name>
<description>Data access services for admin console</description>
<dependencies>
<dependency>
<groupId>org.joyqueue</groupId>
<artifactId>joyqueue-token-api</artifactId>
</dependency>
<dependency>
<groupId>org.joyqueue</groupId>
<artifactId>joyqueue-retry-db-console</artifactId>
</dependency>
<dependency>
<groupId>org.joyqueue</groupId>
<artifactId>joyqueue-data-model</artifactId>
</dependency>
<dependency>
<groupId>org.joyqueue</groupId>
<artifactId>joyqueue-data-repository-api</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpasyncclient</artifactId>
<exclusions>
<exclusion>
<artifactId>httpcore</artifactId>
<groupId>org.apache.httpcomponents</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
</dependency>
<dependency>
<groupId>org.joyqueue</groupId>
<artifactId>joyqueue-model</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<!-- <dependency>-->
<!-- <groupId>dom4j</groupId>-->
<!-- <artifactId>dom4j</artifactId>-->
<!-- <version>1.6.1</version>-->
<!-- </dependency>-->
<dependency>
<groupId>org.joyqueue</groupId>
<artifactId>joyqueue-network</artifactId>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
<groupId>org.joyqueue</groupId>
<artifactId>joyqueue-hbase</artifactId>
</dependency>
<dependency>
<groupId>org.joyqueue</groupId>
<artifactId>joyqueue-nsr-core</artifactId>
</dependency>
<dependency>
<groupId>org.joyqueue</groupId>
<artifactId>joyqueue-archive-api</artifactId>
</dependency>
<!-- FIXME: 应该依赖joyqueue-archive-api 而不是这个joyqueue-archive-hbase实现-->
<dependency>
<groupId>org.joyqueue</groupId>
<artifactId>joyqueue-archive-hbase</artifactId>
</dependency>
<dependency>
<groupId>org.joyqueue</groupId>
<artifactId>joyqueue-client-all</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.joyqueue</groupId>
<artifactId>joyqueue-message-filter-api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
|