Changeset 32340 in osm for applications/editors/josm/plugins/mapillary
- Timestamp:
- 2016-06-20T17:21:18+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/mapillary
- Files:
-
- 4 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/.gitignore
r31882 r32340 1 # Eclipse 1 2 /.classpath 2 3 /.project 3 /bin 4 /bin/ 5 6 # IntelliJ idea 7 /*.iml 8 /*.iws 9 /*.ipr 10 /out/ 11 /.idea/* 12 !/.idea/codeStyleSettings.xml 13 14 # Gradle 4 15 /build/ 5 16 /.gradle/ 6 /.settings 17 7 18 /test/data/preferences/ 8 *.iml9 .idea/ -
applications/editors/josm/plugins/mapillary/.project
r32286 r32340 3 3 <name>JOSM-Mapillary</name> 4 4 <comment>Allows the user to work with pictures hosted at mapillary.com</comment> 5 <projects> 6 </projects> 7 <buildSpec> 8 <buildCommand> 9 <name>org.eclipse.jdt.core.javabuilder</name> 10 <arguments> 11 </arguments> 12 </buildCommand> 13 <buildCommand> 14 <name>ch.acanda.eclipse.pmd.builder.PMDBuilder</name> 15 <arguments> 16 </arguments> 17 </buildCommand> 18 <buildCommand> 19 <name>org.sonarlint.eclipse.core.sonarlintBuilder</name> 20 <arguments> 21 </arguments> 22 </buildCommand> 23 </buildSpec> 5 <projects/> 24 6 <natures> 25 7 <nature>org.eclipse.jdt.core.javanature</nature> 26 8 <nature>org.sonarlint.eclipse.core.sonarlintNature</nature> 27 9 <nature>ch.acanda.eclipse.pmd.builder.PMDNature</nature> 10 <nature>org.eclipse.buildship.core.gradleprojectnature</nature> 28 11 </natures> 12 <buildSpec> 13 <buildCommand> 14 <name>org.eclipse.jdt.core.javabuilder</name> 15 <arguments/> 16 </buildCommand> 17 <buildCommand> 18 <name>org.sonarlint.eclipse.core.sonarlintBuilder</name> 19 <arguments/> 20 </buildCommand> 21 <buildCommand> 22 <name>ch.acanda.eclipse.pmd.builder.PMDBuilder</name> 23 <arguments/> 24 </buildCommand> 25 <buildCommand> 26 <name>org.eclipse.buildship.core.gradleprojectbuilder</name> 27 <arguments/> 28 </buildCommand> 29 </buildSpec> 30 <linkedResources/> 29 31 </projectDescription> -
applications/editors/josm/plugins/mapillary/.settings/Build JOSM-Mapillary.launch
r31817 r32340 15 15 <listEntry value="javadoc"/> 16 16 </listAttribute> 17 <stringAttribute key="working_dir" value="${ workspace_loc:/JOSM-Mapillary}"/>17 <stringAttribute key="working_dir" value="${project_loc}"/> 18 18 </launchConfiguration> -
applications/editors/josm/plugins/mapillary/.settings/Launch JOSM with JOSM-Mapillary loaded.launch
r31798 r32340 13 13 <listEntry value="runJosm"/> 14 14 </listAttribute> 15 <stringAttribute key="working_dir" value="${ workspace_loc:/JOSM-Mapillary}"/>15 <stringAttribute key="working_dir" value="${project_loc}"/> 16 16 </launchConfiguration> -
applications/editors/josm/plugins/mapillary/.settings/org.eclipse.jdt.core.prefs
r32203 r32340 7 7 org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled 8 8 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 9 org.eclipse.jdt.core.compiler.codegen.targetPlatform=1. 710 org.eclipse.jdt.core.compiler.compliance=1. 79 org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 10 org.eclipse.jdt.core.compiler.compliance=1.8 11 11 org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning 12 12 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error … … 94 94 org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning 95 95 org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning 96 org.eclipse.jdt.core.compiler.source=1. 796 org.eclipse.jdt.core.compiler.source=1.8 -
applications/editors/josm/plugins/mapillary/build.gradle
r32335 r32340 1 1 apply plugin: 'eclipse' 2 2 apply plugin: 'findbugs' 3 apply plugin: 'idea' 3 4 apply plugin: 'jacoco' 4 5 apply plugin: 'java' … … 66 67 name = 'JOSM-Mapillary' 67 68 comment = property('plugin.description') 68 natures 'org.sonarlint.eclipse.core.sonarlintNature', 'ch.acanda.eclipse.pmd.builder.PMDNature' 69 natures 'org.sonarlint.eclipse.core.sonarlintNature', 'ch.acanda.eclipse.pmd.builder.PMDNature', 'org.eclipse.buildship.core.gradleprojectnature' 70 buildCommand 'org.sonarlint.eclipse.core.sonarlintBuilder' 69 71 buildCommand 'ch.acanda.eclipse.pmd.builder.PMDBuilder' 72 buildCommand 'org.eclipse.buildship.core.gradleprojectbuilder' 70 73 } 71 74 }
Note:
See TracChangeset
for help on using the changeset viewer.