Changeset 36202 in osm


Ignore:
Timestamp:
2024-01-10T14:32:59+01:00 (5 months ago)
Author:
taylor.smock
Message:

See #8269: Add initial Maven support to JMapViewer

This is largely 1-1 compatible with the targets of the ant build.xml file, with
some exceptions (see "Ant targets -> Maven targets" in CONTRIBUTING.md).

Please note that maven (by default) puts most generated data into the target
directory. This has been overridden for some targets.

For this commit, the following informational files were added:

  • RELEASING.md: I got tired of looking up how to do a release for JMapViewer
  • CONTRIBUTING.md: Just in case someone else wants to contribute to JMapViewer
Location:
applications/viewer/jmapviewer
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • applications/viewer/jmapviewer/build.xml

    r36140 r36202  
    140140        <taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties"
    141141            classpathref="checkstyle.classpath"/>
    142         <checkstyle config="tools/checkstyle/jmapviewer_checks.xml">
     142        <checkstyle config="${basedir}/tools/checkstyle/jmapviewer_checks.xml">
    143143            <!-- Exclude the module-info since checkstyle currently cannot parse it -->
    144144            <fileset dir="${basedir}/src" includes="**/*.java" excludes="module-info.java" />
  • applications/viewer/jmapviewer/tools/checkstyle/jmapviewer_checks.xml

    r35319 r36202  
    113113  </module>
    114114  <module name="SuppressionFilter">
    115     <property name="file" value="${basedir}/tools/checkstyle/jmapviewer_filters.xml"/>
     115    <property name="file" value="tools/checkstyle/jmapviewer_filters.xml"/>
    116116    <property name="optional" value="true"/>
    117117  </module>
Note: See TracChangeset for help on using the changeset viewer.