|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + SPDX-License-Identifier: Apache-2.0 |
| 4 | + Copyright Red Hat Inc. and Hibernate Authors |
| 5 | +--> |
| 6 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 7 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 8 | + <modelVersion>4.0.0</modelVersion> |
| 9 | + <parent> |
| 10 | + <groupId>org.hibernate.search</groupId> |
| 11 | + <artifactId>hibernate-search-parent-public</artifactId> |
| 12 | + <version>8.2.0-SNAPSHOT</version> |
| 13 | + <relativePath>../../../build/parents/public</relativePath> |
| 14 | + </parent> |
| 15 | + <artifactId>hibernate-search-backend-elasticsearch-client-elasticsearch-java</artifactId> |
| 16 | + |
| 17 | + <name>Hibernate Search Backend - Elasticsearch client based on the low-level Elasticsearch java client</name> |
| 18 | + <description>Hibernate Search Elasticsearch client based on the low-level Elasticsearch java client</description> |
| 19 | + |
| 20 | + <properties> |
| 21 | + <!-- This is a publicly distributed module that should be published: --> |
| 22 | + <deploy.skip>false</deploy.skip> |
| 23 | + <java.module.name>org.hibernate.search.backend.elasticsearch.client.elasticsearch.restclient</java.module.name> |
| 24 | + </properties> |
| 25 | + |
| 26 | + <dependencies> |
| 27 | + <dependency> |
| 28 | + <groupId>org.hibernate.search</groupId> |
| 29 | + <artifactId>hibernate-search-engine</artifactId> |
| 30 | + </dependency> |
| 31 | + <dependency> |
| 32 | + <groupId>org.hibernate.search</groupId> |
| 33 | + <artifactId>hibernate-search-backend-elasticsearch-client-common</artifactId> |
| 34 | + </dependency> |
| 35 | + <dependency> |
| 36 | + <groupId>co.elastic.clients</groupId> |
| 37 | + <artifactId>elasticsearch-java</artifactId> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>org.jboss.logging</groupId> |
| 41 | + <artifactId>jboss-logging</artifactId> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>org.jboss.logging</groupId> |
| 45 | + <artifactId>jboss-logging-annotations</artifactId> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>com.google.code.gson</groupId> |
| 49 | + <artifactId>gson</artifactId> |
| 50 | + </dependency> |
| 51 | + |
| 52 | + <!-- We only depend on Jackson indirectly through the Elasticsearch client sniffer, |
| 53 | + but Dependabot apparently ignores dependency management, |
| 54 | + so we need this explicit dependency to have Dependabot update versions. --> |
| 55 | + <dependency> |
| 56 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 57 | + <artifactId>jackson-core</artifactId> |
| 58 | + </dependency> |
| 59 | + |
| 60 | + <!-- Test --> |
| 61 | + <dependency> |
| 62 | + <groupId>org.hibernate.search</groupId> |
| 63 | + <artifactId>hibernate-search-util-internal-test-common</artifactId> |
| 64 | + <scope>test</scope> |
| 65 | + </dependency> |
| 66 | + </dependencies> |
| 67 | + |
| 68 | + <build> |
| 69 | + <plugins> |
| 70 | + <plugin> |
| 71 | + <groupId>org.moditect</groupId> |
| 72 | + <artifactId>moditect-maven-plugin</artifactId> |
| 73 | + </plugin> |
| 74 | + </plugins> |
| 75 | + </build> |
| 76 | +</project> |
0 commit comments