Changeset 18054 in josm
- Timestamp:
- 2021-07-17T19:15:07+02:00 (4 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 1 deleted
- 2 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/README
r17976 r18054 59 59 - CONTRIBUTION list of major code contributors 60 60 - gpl-2.0.txt, gpl-3.0.txt full text of the GNU General Public License 61 - ide IDE-specific files62 - eclipse/ preconfigured Eclipse configuration files63 - netbeans/ preconfigured Netbeans project64 61 - LICENSE the JOSM license terms 65 62 - native/ OS-specific files … … 148 145 - performance/ performance tests (source code) 149 146 - unit/ unit tests (source code) 150 - tools/ libraries and tools that help in the development process 151 - animal-sniffer-ant-tasks.jar 152 used to build and check code signatures to ensure plugins binary compatibility 147 - tools/ libraries, tools and configuration files that help in the development process 153 148 - checkstyle/ libs and config files for checkstyle (automatically detects code style 154 149 problems in source code); can be launched as an ant target in build.xml 150 - eclipse/ preconfigured Eclipse configuration files 155 151 - ivy/ Apache Ivy binary, configuration file, and downloaded dependencies 156 152 - jacocoant.jar used to include coverage data into JUnit test reports 157 153 - japicc/ used to generate a compatibility report between optimized jar and normal one 154 - netbeans/ preconfigured Netbeans project 155 - pmd/ config files for PMD (source code analyzer, finds common programming flaws) 158 156 - spotbugs/ libs and config files for spotbugs (automatically detects common bugs and potential 159 157 problems in source code); can be launched as an ant target in build.xml -
trunk/tools/eclipse/JOSM (Java 8).launch
r16006 r18054 1 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 2 2 <launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication"> 3 <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS"> 4 <listEntry value="/JOSM/src/org/openstreetmap/josm/gui/MainApplication.java"/> 5 </listAttribute> 6 <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES"> 7 <listEntry value="1"/> 8 </listAttribute> 9 <stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/> 10 <stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="org.openstreetmap.josm.gui.MainApplication"/> 11 <stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="--debug"/> 12 <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="JOSM"/> 13 <stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-ea -Xverify:none"/> 3 <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS"> 4 <listEntry value="/JOSM/src/org/openstreetmap/josm/gui/MainApplication.java"/> 5 </listAttribute> 6 <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES"> 7 <listEntry value="1"/> 8 </listAttribute> 9 <booleanAttribute key="org.eclipse.jdt.launching.ATTR_ATTR_USE_ARGFILE" value="false"/> 10 <booleanAttribute key="org.eclipse.jdt.launching.ATTR_SHOW_CODEDETAILS_IN_EXCEPTION_MESSAGES" value="true"/> 11 <booleanAttribute key="org.eclipse.jdt.launching.ATTR_USE_CLASSPATH_ONLY_JAR" value="false"/> 12 <stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/> 13 <stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="org.openstreetmap.josm.gui.MainApplication"/> 14 <stringAttribute key="org.eclipse.jdt.launching.MODULE_NAME" value="JOSM"/> 15 <stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="--debug"/> 16 <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="JOSM"/> 17 <stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-ea -Xverify:none"/> 14 18 </launchConfiguration>
Note:
See TracChangeset
for help on using the changeset viewer.