Ignore:
Timestamp:
2018-01-28T21:39:24+01:00 (7 years ago)
Author:
donvip
Message:

add new javadoc ant target for plugins

Location:
applications/editors/josm/plugins
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins

    • Property svn:externals
      •  

        old new  
        1717https://github.com/JOSM/rex/trunk rex
        1818https://github.com/JOSM/improve-way/trunk improve-way
         19https://github.com/JOSM/auto-tools/trunk auto-tools
         20https://github.com/JOSM/configuration/trunk configuration
         21https://github.com/JOSM/osm-obj-info/trunk osm-obj-info
    • Property svn:ignore set to
      ColorPlugin
      improve-osm-plugin
      josm-matsim-plugin
      kendzi3d
      missingroads
      scoutsigns
      TombPlugin
      traffic-flow-direction
      JOSM-configuration
      openstreetcam
      areaselector.git
      auto-tools.git
      Color
      configuration.git
      osmarender.wip
      osm-obj-info.git
      tofix.git
  • applications/editors/josm/plugins/CustomizePublicTransportStop

    • Property svn:ignore
      •  

        old new  
        11bin
        22build
         3javadoc
  • applications/editors/josm/plugins/CustomizePublicTransportStop/build.xml

    r33593 r34038  
    3434            <compilerarg value="-Xlint:unchecked" />
    3535        </javac>
     36    </target>
     37    <target name="javadoc" depends="init">
     38        <javadoc destdir="javadoc"
     39                sourcepath="${plugin.src.dir}"
     40                encoding="UTF-8"
     41                windowtitle="${ant.project.name}"
     42                use="true"
     43                private="true"
     44                linksource="true"
     45                author="false">
     46            <classpath refid="compile.path"/>
     47            <link href="http://docs.oracle.com/javase/8/docs/api"/>
     48            <link href="https://josm.openstreetmap.de/doc"/>
     49            <doctitle><![CDATA[<h2>${ant.project.name} - Javadoc</h2>]]></doctitle>
     50            <bottom><![CDATA[<a href="https://josm.openstreetmap.de/wiki/Plugins">JOSM Plugins</a>]]></bottom>
     51        </javadoc>
    3652    </target>
    3753
Note: See TracChangeset for help on using the changeset viewer.