spring-social-facebook fixes (maven)

61 Views Asked by At

I am currently using spring-social-facebook it works quite fine except a few things which aren't up to date.

I tried to fix it on my own (forked from github and fixed it) Now after i build the project

enter image description here

enter image description here

I added those three jars to my pom.xml but none of the classes got recognized.

Added those three like this in my pom.xml:

<dependency>
        <groupId>org.springframework.social</groupId>
        <artifactId>spring-social-facebook</artifactId>
        <scope>system</scope>
        <systemPath>${project.basedir}/src/main/resources/spring-social-facebook-3.0.0.BUILD-SNAPSHOT.jar</systemPath>
    </dependency>

And from maven the jars are loaded but in java i cant use Objects from this jar's

0

There are 0 best solutions below