source: osm/applications/editors/josm/plugins/OpeningHoursEditor/pom.xml@ 36348

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

Set minimum JOSM version to r19044

r19044 was the first Java 11+ only version of JOSM.

File size: 2.9 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>OpeningHoursEditor</artifactId>
10
11 <url>${plugin.link}</url>
12 <developers>
13 <developer>
14 <name>Falko Thomale</name>
15 </developer>
16 </developers>
17 <properties>
18 <plugin.src.dir>src</plugin.src.dir>
19 <plugin.main.version>19044</plugin.main.version>
20 <plugin.author>Falko Thomale</plugin.author>
21 <plugin.class>org.openstreetmap.josm.plugins.ohe.OhePlugin</plugin.class>
22 <plugin.description>extended options for editing opening_hours</plugin.description>
23 <plugin.icon>images/opening_hours.png</plugin.icon>
24 <plugin.link>https://wiki.openstreetmap.org/wiki/JOSM/Plugins/OpeningHoursEditor</plugin.link>
25 <plugin.canloadatruntime>true</plugin.canloadatruntime>
26 </properties>
27 <build>
28 <plugins>
29 <plugin>
30 <groupId>org.codehaus.mojo</groupId>
31 <artifactId>javacc-maven-plugin</artifactId>
32 <executions>
33 <execution>
34 <id>javacc</id>
35 <goals>
36 <goal>javacc</goal>
37 </goals>
38 <configuration>
39 <debugParser>false</debugParser>
40 <debugTokenManager>false</debugTokenManager>
41 <jdkVersion>${java.lang.version}</jdkVersion>
42 <grammarEncoding>UTF-8</grammarEncoding>
43 <unicodeInput>true</unicodeInput>
44 <sourceDirectory>${plugin.src.dir}</sourceDirectory>
45 <includes><include>**/OpeningTimeCompiler.jj</include></includes>
46 <excludes><exclude>**/*.java</exclude></excludes>
47 </configuration>
48 </execution>
49 </executions>
50 </plugin>
51 <plugin>
52 <groupId>org.apache.maven.plugins</groupId>
53 <artifactId>maven-jar-plugin</artifactId>
54 <configuration>
55 <archive>
56 <manifestEntries>
57 <Plugin-Link>${plugin.link}</Plugin-Link>
58 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
59 <Plugin-Canloadatruntime>${plugin.canloadatruntime}</Plugin-Canloadatruntime>
60 </manifestEntries>
61 </archive>
62 </configuration>
63 </plugin>
64 </plugins>
65 </build>
66</project>
Note: See TracBrowser for help on using the repository browser.