Question
Yuri Marx · Jan 28, 2021

JDBC driver and Hibernate dialect on public java repository

Any news about JDBC driver and Hibernate dialect on a public java repository, like mvnrepository? Today I need to download the jdbc driver and hibernate jar, add as an external resource on my maven config file to works.

Product version: IRIS 2020.4
2
0 256
Discussion (4)2
Log in or sign up to continue

Try this

<repository>
   <id>github</id>
   <name>GitHub Apache Maven Packages</name>
   <url>https://maven.pkg.github.com/caretdev/iris-driver-distribution</url>
</repository>
<dependency>
  <groupId>intersystems</groupId>
  <artifactId>intersystems-jdbc</artifactId>
  <version>3.2.0</version>
</dependency>

JDBC worked, thanks.

Do you have hibernate dependency?

As I know there is no jar with the latest Hibernate dialect for IRIS, yet. I think we can prepare it and publish it the same way.