-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #8269: Add initial maven pom files
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
Showing
532 changed files
with
6,382 additions
and
20,212 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.