source: osm/applications/editors/josm/plugins/pointInfo/pom.xml@ 36325

Last change on this file since 36325 was 36325, checked in by taylor.smock, 3 months ago

See #23875: Use SNAPSHOT instead of 1.0-SNAPSHOT since that is what our scripts currently publish

This should fix the Jenkins build for plugins.

Note: Maven warns that this may break in the future, in which case we'll have to
change our processes.

File size: 2.1 KB
Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.openstreetmap.josm.plugins</groupId>
6 <artifactId>plugin-root</artifactId>
7 <version>SNAPSHOT</version>
8 </parent>
9 <artifactId>pointInfo</artifactId>
10
11 <url>${plugin.link}</url>
12 <developers>
13 <developer>
14 <name>Marián Kyral</name>
15 </developer>
16 </developers>
17 <properties>
18 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
20 <plugin.src.dir>src</plugin.src.dir>
21 <plugin.main.version>18723</plugin.main.version>
22 <plugin.canloadatruntime>true</plugin.canloadatruntime>
23 <plugin.author>Marián Kyral</plugin.author>
24 <plugin.class>org.openstreetmap.josm.plugins.pointinfo.PointInfoPlugin</plugin.class>
25 <plugin.description>Shows an additional information about point on map. Only Czech RUIAN and Spanish Cadastre Web Services modules are available at this moment.</plugin.description>
26 <plugin.icon>images/mapmode/pointinfo.svg</plugin.icon>
27 <plugin.link>https://github.com/mkyral/josm-pointInfo</plugin.link>
28 </properties>
29 <build>
30 <plugins>
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-jar-plugin</artifactId>
34 <configuration>
35 <archive>
36 <manifestEntries>
37 <Plugin-Link>${plugin.link}</Plugin-Link>
38 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
39 <Plugin-Canloadatruntime>${plugin.canloadatruntime}</Plugin-Canloadatruntime>
40 </manifestEntries>
41 </archive>
42 </configuration>
43 </plugin>
44 </plugins>
45 </build>
46</project>
Note: See TracBrowser for help on using the repository browser.