source: osm/applications/editors/josm/plugins/http2/pom.xml@ 36313

Last change on this file since 36313 was 36282, checked in by taylor.smock, 8 months ago

Fix #8269: Add initial maven pom files

This additionally deletes most IDE specific configuration, in favor of Maven
configuration.

What this does not do:

  • Convert from ivy to maven for dependency management. This should happen eventually with maven-resolver-ant-tasks (probably with the next dependency update).
  • Deprecate the current ant scripts.
File size: 1.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>1.0-SNAPSHOT</version>
8 </parent>
9 <artifactId>http2</artifactId>
10
11 <developers>
12 <developer>
13 <id>Don-vip</id>
14 </developer>
15 </developers>
16 <properties>
17 <plugin.src.dir>src</plugin.src.dir>
18 <plugin.main.version>15229</plugin.main.version>
19 <plugin.author>Don-vip</plugin.author>
20 <plugin.class>org.openstreetmap.josm.plugins.http2.Http2Plugin</plugin.class>
21 <plugin.description>Provides HTTP/2 support. Requires Java 11 or later.</plugin.description>
22 <java.lang.version>11</java.lang.version>
23 <plugin.canloadatruntime>true</plugin.canloadatruntime>
24 <plugin.early>true</plugin.early>
25 <plugin.icon>images/http2.png</plugin.icon>
26 </properties>
27 <build>
28 <plugins>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
31 <artifactId>maven-jar-plugin</artifactId>
32 <configuration>
33 <archive>
34 <manifestEntries>
35 <Plugin-Minimum-Java-Version>${java.lang.version}</Plugin-Minimum-Java-Version>
36 <Plugin-Early>${plugin.early}</Plugin-Early>
37 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
38 <Plugin-Canloadatruntime>${plugin.canloadatruntime}</Plugin-Canloadatruntime>
39 </manifestEntries>
40 </archive>
41 </configuration>
42 </plugin>
43 </plugins>
44 </build>
45</project>
Note: See TracBrowser for help on using the repository browser.