forked from josmbd/highwayNameModificationJOSMPlugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #23995: Avoid deadlock when changing street name of multiple ways
Signed-off-by: Taylor Smock <[email protected]>
- Loading branch information
Showing
8 changed files
with
122 additions
and
82 deletions.
There are no files selected for viewing
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
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 = 15229 | ||
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 = 15229 | ||
plugin.compile.version = 19044 | ||
plugin.canloadatruntime = true | ||
plugin.author = Taylor Smock <incoming+gokaart/[email protected]> | ||
plugin.class = org.openstreetmap.josm.plugins.highwaynamemodification.HighwayNameModification | ||
|
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,47 @@ | ||
<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>SNAPSHOT</version> | ||
</parent> | ||
<artifactId>highwayNameModification</artifactId> | ||
|
||
<url>${plugin.link}</url> | ||
<developers> | ||
<developer> | ||
<id>taylor.smock</id> | ||
<email>[email protected]</email> | ||
<name>Taylor Smock</name> | ||
</developer> | ||
</developers> | ||
<properties> | ||
<plugin.src.dir>src/main/java</plugin.src.dir> | ||
<plugin.resources.dir>src/main/resources</plugin.resources.dir> | ||
<plugin.main.version>19044</plugin.main.version> | ||
<plugin.author>Taylor Smock <incoming+gokaart/[email protected]></plugin.author> | ||
<plugin.class>org.openstreetmap.josm.plugins.highwaynamemodification.HighwayNameModification</plugin.class> | ||
<plugin.description>Modify addr tags when a highway name is changed</plugin.description> | ||
<plugin.icon>images/deltasignmod.svg</plugin.icon> | ||
<plugin.link>https://gitlab.com/gokaart/JOSM_highwayNameModification</plugin.link> | ||
<plugin.canloadatruntime>true</plugin.canloadatruntime> | ||
</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> |
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
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