cantor-http-service
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.salesforce.cantor</groupId>
<artifactId>cantor-http-service</artifactId>
<version>0.5.23</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2020, Salesforce.com, Inc.
~ All rights reserved.
~ SPDX-License-Identifier: BSD-3-Clause
~ For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause
-->
<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>cantor-parent</artifactId>
<groupId>com.salesforce.cantor</groupId>
<version>0.5.23</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>cantor-http-service</artifactId>
<name>cantor-http-service</name>
<properties>
<spring.jersey.version>4.0.1</spring.jersey.version>
<swagger.version>2.2.41</swagger.version>
<swagger.classgraph.version>4.8.131</swagger.classgraph.version>
</properties>
<dependencies>
<!--CANTOR BASE-->
<dependency>
<groupId>com.salesforce.cantor</groupId>
<artifactId>cantor-base</artifactId>
<version>${project.version}</version>
</dependency>
<!--CANTOR BASE-->
<dependency>
<groupId>com.salesforce.cantor</groupId>
<artifactId>cantor-functions</artifactId>
<version>${project.version}</version>
</dependency>
<!--JERSEY-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jersey</artifactId>
<version>${spring.jersey.version}</version>
</dependency>
<!--SWAGGER-->
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-jaxrs2-jakarta</artifactId>
<version>${swagger.version}</version>
<exclusions>
<exclusion>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
<version>${swagger.classgraph.version}</version>
</dependency>
<!--JSON/GSON-->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>
<!--LOGBACK-->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
</dependencies>
</project>