-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Taylor Smock <[email protected]>
- Loading branch information
Showing
3 changed files
with
79 additions
and
4 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# The minimum JOSM version this plugin is compatible with (can be any numeric version) | ||
plugin.main.version = 18723 | ||
plugin.main.version = 19044 | ||
# The JOSM version this plugin is currently compiled against | ||
# Please make sure this version is available at https://josm.openstreetmap.de/download | ||
# The special values "latest" and "tested" are also possible here, but not recommended. | ||
plugin.compile.version = 18724 | ||
plugin.compile.version = 19044 | ||
plugin.canloadatruntime = true | ||
plugin.author = Taylor Smock <incoming+gokaart/[email protected]> | ||
plugin.class = com.kaart.openqa.OpenQA | ||
|
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,50 @@ | ||
<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>openqa</artifactId> | ||
|
||
<url>${plugin.link}</url> | ||
<developers> | ||
<developer> | ||
<id>tsmock</id> | ||
<name>Taylor Smock</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
</developers> | ||
<properties> | ||
<plugin.src.dir>src</plugin.src.dir> | ||
<plugin.main.version>19044</plugin.main.version> | ||
<plugin.author>Taylor Smock <incoming+gokaart/[email protected]></plugin.author> | ||
<plugin.class>com.kaart.openqa.OpenQA</plugin.class> | ||
<plugin.description>OpenQA validation checker (supports Osmose and Keepright))</plugin.description> | ||
<plugin.icon>images/openqa.svg</plugin.icon> | ||
<plugin.link>https://github.com/JOSM/OpenQA</plugin.link> | ||
<plugin.canloadatruntime>true</plugin.canloadatruntime> | ||
<plugin.test.dir>${project.basedir}/src/test</plugin.test.dir> | ||
<plugin.src.dir>${project.basedir}/src/main/java</plugin.src.dir> | ||
<!-- most plugins default to resource directories in root, e.g. ./data, ./images, ./resources --> | ||
<plugin.resources.dir>${project.basedir}/src/main/resources</plugin.resources.dir> | ||
</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-Canloadatruntime>${plugin.canloadatruntime}</Plugin-Canloadatruntime> | ||
</manifestEntries> | ||
</archive> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |