user3661720
user3661720

Reputation: 29

missing jaxb.properties file

I got this exception: Package "com.google.code.linkedinapi.schema" is missing jaxb.properties file.

How can i do this: https://code.google.com/p/linkedin-j/source/browse/trunk/linkedin-j/core/src/main/java/com/google/code/linkedinapi/schema/jaxb.properties?spec=svn409&r=409

I want to do it: javax.xml.bind.context.factory=com.google.code.linkedinapi.schema.impl.JAXBContextFactory

Upvotes: 2

Views: 1164

Answers (1)

bdoughan
bdoughan

Reputation: 149037

A jaxb.properties file should go under resources:

src/main/resources/com/google/code/linkedinapui/schema

And not under java:

src/main/java/com/google/code/linkedinapui/schema

Upvotes: 3

Related Questions