neo4j-elasticsearch
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.ouestware</groupId> <artifactId>neo4j-elasticsearch</artifactId> <version>5.4_0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.ouestware</groupId> <artifactId>neo4j-elasticsearch</artifactId> <name>neo4j-elasticsearch</name> <version>5.4_0</version> <description>Neo4j Elasticsearch Integration</description> <url>https://gitlab.com/ouestware/neo4j-elasticsearch</url> <developers> <developer> <name>Benoit Simard</name> <email>benoit@ouestware.com</email> <organization>OuestWare</organization> <organizationUrl>http://www.ouestware.com</organizationUrl> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@gitlab.com:ouestware/neo4j-elasticsearch.git</connection> <developerConnection>scm:git:git@gitlab.com:ouestware/neo4j-elasticsearch.git</developerConnection> <url>git@gitlab.com:ouestware/neo4j-elasticsearch.git</url> </scm> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compile.version}</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <source>${java.version}</source> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>${maven.shade.version}</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <shadedArtifactAttached>true</shadedArtifactAttached> <shadedClassifierName>all</shadedClassifierName> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${maven.jacoco.plugin}</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>${maven.gpg.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>${gpg.keyname}</keyname> <gpgArguments> <arg>--batch</arg> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${maven.nexus-staging.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j</artifactId> <version>5.4.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.neo4j.test</groupId> <artifactId>neo4j-harness</artifactId> <version>5.4.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>test-utils</artifactId> <groupId>org.neo4j</groupId> </exclusion> <exclusion> <artifactId>io-test-utils</artifactId> <groupId>org.neo4j</groupId> </exclusion> <exclusion> <artifactId>neo4j-server</artifactId> <groupId>org.neo4j.app</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.neo4j.community</groupId> <artifactId>it-test-support</artifactId> <version>5.4.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>assertj-core</artifactId> <groupId>org.assertj</groupId> </exclusion> <exclusion> <artifactId>mockito-core</artifactId> <groupId>org.mockito</groupId> </exclusion> <exclusion> <artifactId>layout-test-utils</artifactId> <groupId>org.neo4j</groupId> </exclusion> <exclusion> <artifactId>io-test-utils</artifactId> <groupId>org.neo4j</groupId> </exclusion> <exclusion> <artifactId>test-utils</artifactId> <groupId>org.neo4j</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.neo4j.driver</groupId> <artifactId>neo4j-java-driver</artifactId> <version>5.4.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>netty-tcnative-classes</artifactId> <groupId>io.netty</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> <version>1.17.6</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>duct-tape</artifactId> <groupId>org.rnorth.duct-tape</groupId> </exclusion> <exclusion> <artifactId>docker-java-api</artifactId> <groupId>com.github.docker-java</groupId> </exclusion> <exclusion> <artifactId>docker-java-transport-zerodep</artifactId> <groupId>com.github.docker-java</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>elasticsearch</artifactId> <version>1.17.6</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <neo4j.version>5.4.0</neo4j.version> <neo4j.driver.version>5.4.0</neo4j.driver.version> <maven.compile.version>3.10.1</maven.compile.version> <maven.source.version>3.2.1</maven.source.version> <maven.nexus-staging.version>1.6.13</maven.nexus-staging.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <junit.version>4.13.2</junit.version> <maven.shade.version>3.4.1</maven.shade.version> <java.version>17</java.version> <maven.gpg.version>3.0.1</maven.gpg.version> <maven.jacoco.plugin>0.8.8</maven.jacoco.plugin> <jest.version>6.3.1</jest.version> <testcontainers.version>1.17.6</testcontainers.version> <maven.javadoc.version>3.4.1</maven.javadoc.version> </properties> </project>