cantor-misc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.salesforce.cantor</groupId>
<artifactId>cantor-misc</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">
<modelVersion>4.0.0</modelVersion>
<artifactId>cantor-misc</artifactId>
<packaging>jar</packaging>
<name>cantor-misc</name>
<description>Cantor Miscellaneous Utilities</description>
<parent>
<groupId>com.salesforce.cantor</groupId>
<artifactId>cantor-parent</artifactId>
<version>0.5.23</version>
<relativePath>../pom.xml</relativePath>
</parent>
<dependencies>
<!-- CANTOR BASE -->
<dependency>
<groupId>com.salesforce.cantor</groupId>
<artifactId>cantor-base</artifactId>
<version>${project.version}</version>
</dependency>
<!-- CANTOR COMMON -->
<dependency>
<groupId>com.salesforce.cantor</groupId>
<artifactId>cantor-common</artifactId>
<version>${project.version}</version>
</dependency>
<!-- SLF4J API -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!-- LOGBACK -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<!-- TEST NG -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
<scope>test</scope>
</dependency>
<!--CANTOR COMMON TEST JAR-->
<dependency>
<groupId>com.salesforce.cantor</groupId>
<artifactId>cantor-common</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<!--CANTOR H2-->
<dependency>
<groupId>com.salesforce.cantor</groupId>
<artifactId>cantor-h2</artifactId>
<scope>test</scope>
</dependency>
<!--CANTOR MYSQL-->
<dependency>
<groupId>com.salesforce.cantor</groupId>
<artifactId>cantor-mysql</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>