Hi Team,
Need to build a project with Dremio 15.4.0-202104271933250135-5a3beb9a, which requires JDBC plugin. When I try to download dependency it fails with below error:
Could not find artifact com.dremio.community.plugins:dremio-ce-jdbc-plugin:pom:15.4.0-202104271933250135-5a3beb9a in dremio-public (http://maven.dremio.com/public/)
Even can’t locate JDBC driver 15.4 at Index of jdbc-driver/. Can you please check it at your end and let me know how to resolve it.
Below is my pom.xml
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.dremio.plugin</groupId>
<version>15.4.0</version>
<artifactId>dremio-verticaarp-plugin</artifactId>
<name>Dremio Vertica ARP Community Connector</name>
<properties>
<version.dremio>15.4.0-202104271933250135-5a3beb9a</version.dremio>
</properties>
<dependencies>
<dependency>
<groupId>com.dremio.community.plugins</groupId>
<artifactId>dremio-ce-jdbc-plugin</artifactId>
<version>${version.dremio}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<configLocation>src/main/checkstyle/checkstyle-config.xml</configLocation>
<suppressionsLocation>src/main/checkstyle/checkstyle-suppressions.xml</suppressionsLocation>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>dremio-public</id>
<url>http://maven.dremio.com/public/</url>
</repository>
<repository>
<id>dremio-free</id>
<url>http://maven.dremio.com/free/</url>
</repository>
</repositories>
</project>