Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[equinox-dev] adding a dependency for tests

Hey everyone,

I'm addressing a limitation of org.eclipse.equinox.http.servlet and to test I need apache commons-fileupload.

I see that we have  org.apache.commons.fileupload:1.2.2 in orbit.

Locally I've modified my target platform (with Tom's help) to add a Software Site of http://download.eclipse.org/tools/orbit/downloads/drops/R20151221205849/repository/ from which I've added the dependency and for executing the tests from the everything works.

I'd also like to make sure when I commit the fix however that the test run from maven as well.

I tried simply adding

                <requirement>
                   <type>eclipse-plugin</type>
                   <id>org.apache.commons.fileupload</id>
                   <versionRange>1.2.2</versionRange>
                </requirement>

to the pom, but this didn't work. I'm guessing this is because that isn't in the target platform repo used by rt.equinox.bundles project.

Any help would be appreciated,
--
Raymond Augé (@rotty3000)

Back to the top