Luciano
Luciano

Reputation: 8582

Maven location for JCA Connector 1.6

Does anyone know if the API for the Java EE Connector version 1.6 is located in some Maven Repository? As I can't seem to find it.

If possible, with source code and/or javadoc would be greatly appreciated.

Upvotes: 3

Views: 1123

Answers (3)

David
David

Reputation: 1177

I couldn't find a 1.6 version anywhere on mvnrespository.com either. I ended up using Glassfish's spec: org.glassfish.main.connectors:javax.resource:3.1.2.2

The javax:javaee-api compiles OK, but broke my unit tests.

Upvotes: 0

Luciano
Luciano

Reputation: 8582

Ok I was able to find it under javax:javaee-api along with the rest of java EE. There is also a web version. I still cannot find an isolated version but I guess this is better than nothing. Also these versions don't have any JavaDocs.

Upvotes: 1

matt b
matt b

Reputation: 139931

According to Guide to Coping with Sun JARs, you should be able to use either javax.resource:connector or javax.resource:connector-api.

Upvotes: 0

Related Questions