Skip to content

Commit

Permalink
Fix #8269: Add initial maven pom files
Browse files Browse the repository at this point in the history
This additionally deletes ''most'' IDE specific configuration, in favor of Maven
configuration.

What this does ''not'' do:
* Convert from ivy to maven for dependency management. This should happen
  eventually with `maven-resolver-ant-tasks` (probably with the next dependency
  update).
* Deprecate the current `ant` scripts.

git-svn-id: https://josm.openstreetmap.de/osmsvn/applications/editors/josm/plugins@36282 b9d5c4c9-76e1-0310-9c85-f3177eceb1e4
  • Loading branch information
tsmock committed Jun 7, 2024
1 parent 5004d20 commit 5715df8
Show file tree
Hide file tree
Showing 532 changed files with 6,382 additions and 20,212 deletions.
115 changes: 0 additions & 115 deletions ColumbusCSV/.settings/org.eclipse.jdt.core.prefs

This file was deleted.

60 changes: 0 additions & 60 deletions ColumbusCSV/.settings/org.eclipse.jdt.ui.prefs

This file was deleted.

44 changes: 44 additions & 0 deletions ColumbusCSV/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.openstreetmap.josm.plugins</groupId>
<artifactId>plugin-root</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>ColumbusCSV</artifactId>

<url>${plugin.link}</url>
<developers>
<developer>
<name>Oliver Wieland</name>
</developer>
</developers>
<properties>
<plugin.src.dir>src</plugin.src.dir>
<plugin.main.version>18494</plugin.main.version>
<plugin.author>Oliver Wieland</plugin.author>
<plugin.class>org.openstreetmap.josm.plugins.columbusCSV.ColumbusCSVPlugin</plugin.class>
<plugin.description>Imports proprietary CSV files of the Columbus/Visiontac V-900 GPS logger into a GPX layer.</plugin.description>
<plugin.link>https://wiki.openstreetmap.org/wiki/JOSM/Plugins/ColumbusCSV</plugin.link>
<plugin.icon>images/colcsvicon.png</plugin.icon>
<plugin.stage>60</plugin.stage>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Plugin-Link>${plugin.link}</Plugin-Link>
<Plugin-Icon>${plugin.icon}</Plugin-Icon>
<Plugin-Stage>${plugin.stage}</Plugin-Stage>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>
7 changes: 0 additions & 7 deletions CommandLine/.classpath

This file was deleted.

28 changes: 0 additions & 28 deletions CommandLine/.project

This file was deleted.

Loading

0 comments on commit 5715df8

Please sign in to comment.