Where can I download the net.oauth httpclient4 jar file

I need to give a link to our construction engineer.

although I added this to our pom file, but did not get the jar. thanks net.oauth.core OAuth-httpclient4 20100601       

+5
source share
2 answers

The artifact is not in the central repository. You must add the http://oauth.googlecode.com/svn/code/maven/ repository to your pom.xml or deploy the artifact to your company’s private repository.

+6
source

I had the same issue as this fixed.

    <dependency>
        <groupId>net.oauth.core</groupId>
        <artifactId>oauth-httpclient4</artifactId>
        <version>20090913</version>
    </dependency>
0
source

All Articles