Details
-
Type:
Improvement
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.3
-
Fix Version/s: 2.5
-
Component/s: None
-
Labels:None
-
Patch Submitted:Yes
-
Number of attachments :
Description
Something like:
<file>
<name>.springBeans</name
<contents url="http://someurl"/>
</file>
Issue Links
- is related to
-
MECLIPSE-696
Allow file contents to be obtained from url or location does not work behind a firewall
-
This patch should solve this issue.
It adds a <location> and <url> elements to <file> (use instead of <contents>) to specify a location.
Examples:
<file>
<name>.checkstyle</name>
<location>/cxf-eclipse-checkstyle</location>
</file>
Will grab the /cxf-eclipse-checkstyle file from the plugin dependencies (like the checkstyle plugin uses to grab the checkstyle configs).
<file>
<name>.checkstyle</name>
<url>http://some.place.org/path/to/file</url
</file>
will grab it based on the URL.