1

I am writing java backend testcases to check different post/get action on the server. I have to upload file using http post method, I am using this link for reference: How to upload a file using Java HttpClient library working with PHP.

I am specifying external dependency in gradle.build file gradle build is failing to resolve external dependency httpmime.

gradle build Execution failed for task ':test-fwk:generateClasspath'.

Could not resolve all dependencies for configuration ':test-fwk:default'. Could not find group:org.apache.httpcomponents, module:httpmime, version:4.1.3

I am using compile group: 'org.apache.httpcomponents', name: 'httpmime', version: '4.1.3' in build.gradle file. Other dependencies like org.apache.httpcomponents:httpclient and httpcore are getting resolved successfully.

I have spent lot of time trying to find the solution. Please reply if anybody knows the issue.

Community
  • 1
  • 1
Swetha
  • 11
  • 1
  • 2

1 Answers1

2

This minimal build script works to reference the httpmime dependency, running with Gradle 1.2

apply plugin: 'java'
repositories{
    mavenCentral()
}
dependencies{
    compile group: 'org.apache.httpcomponents', name: 'httpmime', version: '4.1.3'
}
TheKaptain
  • 1,011
  • 9
  • 10