Ticket #21780: 21780.patch

File 21780.patch, 4.1 KB (added by taylor.smock, 4 years ago)
  • .classpath

     
    11<?xml version="1.0" encoding="UTF-8"?>
    22<classpath>
    33        <classpathentry kind="src" path="src"/>
     4        <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/>
    45        <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&amp;ivyXmlPath=ivy.xml&amp;confs=*"/>
    117        <classpathentry kind="output" path="bin"/>
    128</classpath>
  • .project

     
    33        <name>JOSM-GSON</name>
    44        <comment></comment>
    55        <projects>
     6                <project>JOSM</project>
    67        </projects>
    78        <buildSpec>
    89                <buildCommand>
     
    2223                </buildCommand>
    2324        </buildSpec>
    2425        <natures>
    25                 <nature>org.sonar.ide.eclipse.core.sonarNature</nature>
    2626                <nature>org.eclipse.jdt.core.javanature</nature>
    2727                <nature>net.sf.eclipsecs.core.CheckstyleNature</nature>
     28                <nature>org.apache.ivyde.eclipse.ivynature</nature>
    2829        </natures>
    2930</projectDescription>
  • build.xml

     
    11<?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">
    33    <!-- enter the SVN commit message -->
    44    <property name="commit.message" value="Commit message"/>
    55    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
     
    1414    <!-- ** include targets that all plugins have in common ** -->
    1515    <import file="../build-common.xml"/>
    1616
     17    <target name="pre-compile" depends="fetch_dependencies">
     18        <!-- include fetch_dependencies task -->
     19    </target>
     20
    1721</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>