-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pom and update github workflow for auto releases
Signed-off-by: Taylor Smock <[email protected]>
- Loading branch information
Showing
3 changed files
with
57 additions
and
25 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,22 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<project name="config" default="dist" basedir="."> | ||
<property name="commit.message" value="Commit message"/> | ||
<property name="plugin.main.version" value="19044"/> | ||
<property name="plugin.author" value="Aarthy KC"/> | ||
<property name="plugin.class" value="org.openstreetmap.josm.plugins.ConfigPlugin"/> | ||
<property name="plugin.description" value="Task configurations"/> | ||
<!--<property name="plugin.icon" value="..."/>--> | ||
<!--<property name="plugin.link" value="..."/>--> | ||
<!--<property name="plugin.early" value="..."/>--> | ||
<!--<property name="plugin.requires" value="..."/>--> | ||
<!--<property name="plugin.stage" value="..."/>--> | ||
<target name="additional-manifest"> | ||
<manifest file="MANIFEST" mode="update"> | ||
<attribute name="13558_Plugin-Url" value="v1.2;https://github.com/JOSM/configuration/releases/download/v1.2/config.jar" /> | ||
<attribute name="14153_Plugin-Url" value="v1.2.2;https://github.com/JOSM/configuration/releases/download/v1.2.2/config.jar" /> | ||
</manifest> | ||
</target> | ||
<!-- ** include targets that all plugins have in common ** --> | ||
<import file="../build-common.xml"/> | ||
|
||
<property name="commit.message" value="Commit message"/> | ||
<property name="plugin.main.version" value="19044"/> | ||
<property name="plugin.author" value="Aarthy KC"/> | ||
<property name="plugin.class" value="org.openstreetmap.josm.plugins.ConfigPlugin"/> | ||
<property name="plugin.description" value="Task configurations"/> | ||
<!--<property name="plugin.icon" value="..."/>--> | ||
<!--<property name="plugin.link" value="..."/>--> | ||
<!--<property name="plugin.early" value="..."/>--> | ||
<!--<property name="plugin.requires" value="..."/>--> | ||
<!--<property name="plugin.stage" value="..."/>--> | ||
<target name="additional-manifest"> | ||
<manifest file="MANIFEST" mode="update"> | ||
<attribute name="13558_Plugin-Url" value="v1.2;https://github.com/JOSM/configuration/releases/download/v1.2/config.jar"/> | ||
<attribute name="14153_Plugin-Url" value="v1.2.2;https://github.com/JOSM/configuration/releases/download/v1.2.2/config.jar"/> | ||
</manifest> | ||
</target> | ||
<!-- ** include targets that all plugins have in common ** --> | ||
<import file="../build-common.xml"/> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0"?> | ||
<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>configuration</artifactId> | ||
<url>${plugin.link}</url> | ||
<developers> | ||
<developer> | ||
<name>Aarthy KC</name> | ||
</developer> | ||
</developers> | ||
<properties> | ||
<plugin.src.dir>src</plugin.src.dir> | ||
<plugin.main.version>19044</plugin.main.version> | ||
<plugin.author>Aarthy KC</plugin.author> | ||
<plugin.class>org.openstreetmap.josm.plugins.ConfigPlugin</plugin.class> | ||
<plugin.description>Task configurations</plugin.description> | ||
</properties> | ||
</project> |