EXASOL Maven repository

Details

Detail name Value
Changelog Number 66
Type New Feature
Status Resolved
Fix Versions EXASOL 6.0.0
Resolution Date 2017-03-16

Creation of a public Maven repository (https://maven.exasol.com) which includes our JDBC driver and the script API definition. By including that repository, you can easily develop Java code for EXASOL scripts directly in your Java IDE.

We offer repositories for release and snapshot versions, which can be added as follows to your Maven pom.xml file:

<repositories>
	<repository>
		<id>maven.exasol.com</id>
		<url>https://maven.exasol.com/artifactory/exasol-releases</url>
		<snapshots>
			<enabled>false</enabled>
		</snapshots>
	</repository>
	<repository>
		<id>maven.exasol.com-snapshots</id>
		<url>https://maven.exasol.com/artifactory/exasol-snapshots</url>
		<snapshots>
			<enabled>true</enabled>
		</snapshots>
	</repository>
</repositories>