source: osm/applications/editors/josm/plugins/comfort0/pom.xml@ 36326

Last change on this file since 36326 was 36325, checked in by taylor.smock, 6 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: 3.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>comfort0</artifactId>
10
11 <url>${plugin.link}</url>
12 <developers>
13 <developer>
14 <id>simon04</id>
15 </developer>
16 </developers>
17 <properties>
18 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19 <plugin.src.dir>src</plugin.src.dir>
20 <plugin.main.version>12164</plugin.main.version>
21 <plugin.canloadatruntime>true</plugin.canloadatruntime>
22
23 <plugin.author>simon04</plugin.author>
24 <plugin.class>net.simon04.comfort0.Comfort0Plugin</plugin.class>
25 <plugin.description>Allows editing data in Level0L format</plugin.description>
26 <plugin.icon>images/theta.svg</plugin.icon>
27 <plugin.link>https://josm.openstreetmap.de/wiki/Help/Plugin/Comfort0</plugin.link>
28 <parser.dir>src/net/simon04/comfort0/level0l</parser.dir>
29 </properties>
30
31 <build>
32 <plugins>
33 <plugin>
34 <groupId>org.apache.maven.plugins</groupId>
35 <artifactId>maven-jar-plugin</artifactId>
36 <configuration>
37 <archive>
38 <manifestEntries>
39 <Plugin-Link>${plugin.link}</Plugin-Link>
40 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
41 <Plugin-Canloadatruntime>${plugin.canloadatruntime}</Plugin-Canloadatruntime>
42 </manifestEntries>
43 </archive>
44 </configuration>
45 </plugin>
46 <plugin>
47 <groupId>org.codehaus.mojo</groupId>
48 <artifactId>javacc-maven-plugin</artifactId>
49 <executions>
50 <execution>
51 <id>javacc</id>
52 <goals>
53 <goal>javacc</goal>
54 </goals>
55 <configuration>
56 <debugParser>false</debugParser>
57 <debugTokenManager>false</debugTokenManager>
58 <jdkVersion>${java.lang.version}</jdkVersion>
59 <grammarEncoding>UTF-8</grammarEncoding>
60 <unicodeInput>true</unicodeInput>
61 <outputDirectory>${parser.dir}/parsergen</outputDirectory>
62 <sourceDirectory>${parser.dir}</sourceDirectory>
63 <includes><include>Level0LParser.jj</include></includes>
64 <excludes><exclude>**/*.java</exclude></excludes>
65 </configuration>
66 </execution>
67 </executions>
68 </plugin>
69 </plugins>
70 </build>
71</project>
Note: See TracBrowser for help on using the repository browser.