Changeset 35523 in osm for applications
- Timestamp:
- 2020-08-19T21:00:00+02:00 (4 years ago)
- Location:
- applications/editors/josm/plugins/apache-http
- Files:
-
- 1 added
- 3 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/apache-http/.classpath
r34491 r35523 4 4 <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/> 5 5 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/> 6 <classpathentry exported="true" kind="con" path="org.apache.ivyde.eclipse.cpcontainer.IVYDE_CONTAINER/?project=JOSM-apache-http&ivyXmlPath=ivy.xml&confs=*"/> 6 7 <classpathentry combineaccessrules="false" kind="src" path="/JOSM-apache-commons"/> 7 <classpathentry exported="true" kind="lib" path="lib/httpclient-4.5.6.jar"/>8 <classpathentry exported="true" kind="lib" path="lib/httpcore-4.4.10.jar"/>9 <classpathentry exported="true" kind="lib" path="lib/httpmime-4.5.6.jar"/>10 8 <classpathentry kind="output" path="bin"/> 11 9 </classpath> -
applications/editors/josm/plugins/apache-http/.project
r34491 r35523 25 25 <nature>org.eclipse.jdt.core.javanature</nature> 26 26 <nature>net.sf.eclipsecs.core.CheckstyleNature</nature> 27 <nature>org.apache.ivyde.eclipse.ivynature</nature> 27 28 </natures> 28 29 </projectDescription> -
applications/editors/josm/plugins/apache-http/build.xml
r34632 r35523 1 1 <?xml version="1.0" encoding="utf-8"?> 2 <project name="apache-http" default="dist" basedir="." >2 <project name="apache-http" default="dist" basedir="." xmlns:ivy="antlib:org.apache.ivy.ant"> 3 3 4 4 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> … … 11 11 <property name="plugin.class" value="org.openstreetmap.josm.plugins.http.HttpPlugin"/> 12 12 <property name="plugin.description" value="Provides Apache HTTP library. Not meant to be installed directly by users, but rather as a dependency for other plugins."/> 13 14 <property name="josm" location="../../core/dist/josm-custom.jar"/> 15 <property name="plugin.dist.dir" value="../../dist"/> 13 16 14 <property name="plugin.requires" value="apache-commons;jna"/> 17 15 <property name="plugin.stage" value="15"/> … … 20 18 <import file="../build-common.xml"/> 21 19 20 <target name="resolve" description="--> retrieve dependencies with Ivy"> 21 <ivy:retrieve/> 22 </target> 23 24 <target name="dist" depends="resolve,plugin_common.dist"/> 25 22 26 </project> -
applications/editors/josm/plugins/apache-http/lib
-
Property svn:ignore
set to
*.jar
-
Property svn:ignore
set to
Note:
See TracChangeset
for help on using the changeset viewer.