hazelcast-mapstore
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.hazelcast</groupId> <artifactId>hazelcast-mapstore</artifactId> <version>5.5.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2024 Hazelcast Inc. ~ ~ Licensed under the Hazelcast Community License (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://hazelcast.com/hazelcast-community-license ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES 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"> <modelVersion>4.0.0</modelVersion> <groupId>com.hazelcast</groupId> <artifactId>hazelcast-mapstore</artifactId> <packaging>jar</packaging> <name>hazelcast-mapstore</name> <description>Ready made MapStore using Hazelcast SQL</description> <url>http://www.hazelcast.com/</url> <parent> <groupId>com.hazelcast.jet</groupId> <artifactId>hazelcast-jet-extensions</artifactId> <version>5.5.0</version> </parent> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>com.hazelcast.mapstore</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <id>jar-with-dependencies</id> <phase>${shade.jar-with-dependencies.phase}</phase> <goals> <goal>shade</goal> </goals> <configuration combine.self="override"> <!-- hazelcast-mapstore doesn't have any dependencies which should be included, no need for jar-with-dependencies --> <shadedArtifactAttached>false</shadedArtifactAttached> <relocations> <relocation> <!-- We need to relocate our usage of org.apache.calcite to the location used in hazelcast-sql --> <pattern>org.apache.calcite</pattern> <shadedPattern>${relocation.root}.org.apache.calcite</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.hazelcast</groupId> <artifactId>hazelcast-sql</artifactId> <version>${project.parent.version}</version> <scope>provided</scope> </dependency> <!-- We use org.apache.calcite.sql.SqlDialect The scope is provided because calcite is already part of hazelcast-sql --> <dependency> <groupId>org.apache.calcite</groupId> <artifactId>calcite-core</artifactId> <version>${calcite.version}</version> <scope>provided</scope> </dependency> <!-- Test dependencies --> <dependency> <groupId>com.hazelcast</groupId> <artifactId>hazelcast-sql</artifactId> <version>${project.parent.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>${h2.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <scope>test</scope> </dependency> <!--Postgres--> <dependency> <groupId>org.testcontainers</groupId> <artifactId>postgresql</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>test</scope> </dependency> <!--MySQL--> <dependency> <groupId>org.testcontainers</groupId> <artifactId>mysql</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.mysql</groupId> <artifactId>mysql-connector-j</artifactId> <scope>test</scope> </dependency> <!--MSSQL--> <dependency> <groupId>org.testcontainers</groupId> <artifactId>mssqlserver</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>mssql-jdbc</artifactId> <scope>test</scope> </dependency> <!--Oracle--> <dependency> <groupId>org.testcontainers</groupId> <artifactId>oracle-xe</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>oracle-free</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.oracle.database.jdbc</groupId> <artifactId>ojdbc11</artifactId> <scope>test</scope> </dependency> <!--MariaDB--> <dependency> <groupId>org.testcontainers</groupId> <artifactId>mariadb</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mariadb.jdbc</groupId> <artifactId>mariadb-java-client</artifactId> <version>3.4.0</version> <scope>test</scope> </dependency> <!-- MongoDB --> <dependency> <groupId>com.hazelcast.jet</groupId> <artifactId>hazelcast-jet-mongodb</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>mongodb</artifactId> <scope>test</scope> </dependency> </dependencies> </project>