OHDSI Home | Forums | Wiki | Github

Can't download SqlRender from https://repo.ohdsi.org:8085/nexus/content/repositories/releases

I’m trying to compile OmopOnFhir with maven 3.6.1, but I receive the following error when trying to download org.ohdsi.sql.SqlRender dependency:

javax.net.ssl.sslexception: unrecognized ssl message, plaintext connection?

This dependency it’s expected to be downloaded from the following repository:

https://repo.ohdsi.org:8085/nexus/content/repositories/releases

But it seems there’s some kind of SSL error with it:

It’s really an SSL cert error, or am I doing something wrong?

Thanks

@alexdefelipe Here is the working download URL for the latest OHDSI SqlRender.jar

http://repo.ohdsi.org:8085/nexus/repository/releases/org/ohdsi/sql/SqlRender/1.9.2/SqlRender-1.9.2.jar

According to the nexus repo, “insert this snippet into your pom.xml”

<dependency>
  <groupId>org.ohdsi.sql</groupId>
  <artifactId>SqlRender</artifactId>
  <version>1.9.2</version>
</dependency>
1 Like
t