Ticket #21780: 21780.patch
| File 21780.patch, 4.1 KB (added by , 4 years ago) |
|---|
-
.classpath
1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <classpath> 3 3 <classpathentry kind="src" path="src"/> 4 <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/> 4 5 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/> 5 <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/> 6 <classpathentry exported="true" kind="lib" path="lib/gson-2.8.5.jar" sourcepath="lib/gson-2.8.5-sources.jar"> 7 <attributes> 8 <attribute name="javadoc_location" value="jar:platform:/resource/JOSM-GSON/lib/gson-2.8.5-javadoc.jar!/"/> 9 </attributes> 10 </classpathentry> 6 <classpathentry exported="true" kind="con" path="org.apache.ivyde.eclipse.cpcontainer.IVYDE_CONTAINER/?project=JOSM-gson&ivyXmlPath=ivy.xml&confs=*"/> 11 7 <classpathentry kind="output" path="bin"/> 12 8 </classpath> -
.project
3 3 <name>JOSM-GSON</name> 4 4 <comment></comment> 5 5 <projects> 6 <project>JOSM</project> 6 7 </projects> 7 8 <buildSpec> 8 9 <buildCommand> … … 22 23 </buildCommand> 23 24 </buildSpec> 24 25 <natures> 25 <nature>org.sonar.ide.eclipse.core.sonarNature</nature>26 26 <nature>org.eclipse.jdt.core.javanature</nature> 27 27 <nature>net.sf.eclipsecs.core.CheckstyleNature</nature> 28 <nature>org.apache.ivyde.eclipse.ivynature</nature> 28 29 </natures> 29 30 </projectDescription> -
build.xml
1 1 <?xml version="1.0" encoding="utf-8"?> 2 <project name="gson" default="dist" basedir="." >2 <project name="gson" default="dist" basedir="." xmlns:ivy="antlib:org.apache.ivy.ant"> 3 3 <!-- enter the SVN commit message --> 4 4 <property name="commit.message" value="Commit message"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> … … 14 14 <!-- ** include targets that all plugins have in common ** --> 15 15 <import file="../build-common.xml"/> 16 16 17 <target name="pre-compile" depends="fetch_dependencies"> 18 <!-- include fetch_dependencies task --> 19 </target> 20 17 21 </project> -
ivy.xml
1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- License: GPL. For details, see LICENSE file. --> 3 <ivy-module version="2.0"> 4 <info organisation="org.openstreetmap.josm.plugins" module="gson"/> 5 <dependencies> 6 <dependency org="com.google.code.gson" name="gson" rev="2.8.5" conf="default->default"/> 7 </dependencies> 8 </ivy-module>
