From what I've been able to figure out, the recommended maven dependency for the Amazon Athena JDBC driver is com.syncron.amazonaws, simba-athena-jdbc-driver. The latest version I've been able to find in Maven repo is:
<dependency>
<groupId>com.syncron.amazonaws</groupId>
<artifactId>simba-athena-jdbc-driver</artifactId>
<version>2.0.2</version>
</dependency>
According to the documentation the latest driver version is 2.0.7, which appears to contain some very useful features such as streaming results rather than paging through them.
Is the 2.0.7 version available in maven repository or do I need to download and install it manually?
2.0.7 is not available in public Maven repos e.g. Maven Central.
I'd download it from Using Athena with the JDBC Driver page and install locally with mvn install:install-file
.