[36282] | 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>
|
---|
[36325] | 7 | <version>SNAPSHOT</version>
|
---|
[36282] | 8 | </parent>
|
---|
| 9 | <artifactId>pmtiles</artifactId>
|
---|
| 10 |
|
---|
| 11 | <developers>
|
---|
| 12 | <developer>
|
---|
| 13 | <name>Taylor Smock</name>
|
---|
| 14 | <id>taylor.smock</id>
|
---|
| 15 | <email>tsmock@meta.com</email>
|
---|
| 16 | </developer>
|
---|
| 17 | </developers>
|
---|
| 18 | <properties>
|
---|
| 19 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
---|
| 20 | <plugin.src.dir>src/main/java</plugin.src.dir>
|
---|
| 21 | <plugin.test.dir>src/test/java</plugin.test.dir>
|
---|
| 22 | <plugin.resources.dir>src/main/resources</plugin.resources.dir>
|
---|
[36349] | 23 | <plugin.main.version>19044</plugin.main.version>
|
---|
[36282] | 24 | <plugin.author>Taylor Smock</plugin.author>
|
---|
| 25 | <plugin.class>org.openstreetmap.josm.plugins.pmtiles.PMTilesPlugin</plugin.class>
|
---|
| 26 | <plugin.description>A plugin for pmtile support</plugin.description>
|
---|
| 27 | <java.lang.version>17</java.lang.version>
|
---|
| 28 | <plugin.canloadatruntime>true</plugin.canloadatruntime>
|
---|
| 29 | <plugin.requires>apache-commons</plugin.requires>
|
---|
| 30 | </properties>
|
---|
| 31 | <dependencies>
|
---|
| 32 | <dependency>
|
---|
| 33 | <groupId>org.openstreetmap.josm.plugins</groupId>
|
---|
| 34 | <artifactId>apache-commons</artifactId>
|
---|
[36325] | 35 | <version>SNAPSHOT</version>
|
---|
[36282] | 36 | <scope>provided</scope>
|
---|
| 37 | </dependency>
|
---|
| 38 | </dependencies>
|
---|
| 39 | <build>
|
---|
| 40 | <plugins>
|
---|
| 41 | <plugin>
|
---|
| 42 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 43 | <artifactId>maven-jar-plugin</artifactId>
|
---|
| 44 | <configuration>
|
---|
| 45 | <archive>
|
---|
| 46 | <manifestEntries>
|
---|
| 47 | <Plugin-Minimum-Java-Version>${java.lang.version}</Plugin-Minimum-Java-Version>
|
---|
| 48 | <Plugin-Requires>${plugin.requires}</Plugin-Requires>
|
---|
| 49 | <Plugin-Canloadatruntime>${plugin.canloadatruntime}</Plugin-Canloadatruntime>
|
---|
| 50 | </manifestEntries>
|
---|
| 51 | </archive>
|
---|
| 52 | </configuration>
|
---|
| 53 | </plugin>
|
---|
| 54 | </plugins>
|
---|
| 55 | </build>
|
---|
| 56 | </project>
|
---|