source: osm/applications/editors/josm/plugins/javafx/pom.xml@ 36296

Last change on this file since 36296 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: 3.4 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>javafx</artifactId>
10
11 <developers>
12 <developer>
13 <id>Don-vip</id>
14 </developer>
15 </developers>
16 <properties>
17 <plugin.main.version>18166</plugin.main.version>
18 <plugin.author>Don-vip</plugin.author>
19 <plugin.class>org.openstreetmap.josm.plugins.javafx.JavaFxPlugin</plugin.class>
20 <plugin.description>Provides additional OpenJFX (JavaFX) features such as MP3 audio playback.</plugin.description>
21 <plugin.early>true</plugin.early>
22 <plugin.stage>5</plugin.stage>
23 <javafx.version>19</javafx.version>
24 </properties>
25 <!-- These dependencies should be installed on the host machine - our installers bundle them -->
26 <dependencies>
27 <dependency>
28 <groupId>org.testfx</groupId>
29 <artifactId>openjfx-monocle</artifactId>
30 <version>jdk-11+26</version>
31 <scope>provided</scope>
32 </dependency>
33 <dependency>
34 <groupId>org.openjfx</groupId>
35 <artifactId>javafx-swing</artifactId>
36 <version>${javafx.version}</version>
37 <scope>provided</scope>
38 </dependency>
39 <dependency>
40 <groupId>org.openjfx</groupId>
41 <artifactId>javafx-fxml</artifactId>
42 <version>${javafx.version}</version>
43 <scope>provided</scope>
44 </dependency>
45 <dependency>
46 <groupId>org.openjfx</groupId>
47 <artifactId>javafx-web</artifactId>
48 <version>${javafx.version}</version>
49 <scope>provided</scope>
50 </dependency>
51 <dependency>
52 <groupId>org.openjfx</groupId>
53 <artifactId>javafx-media</artifactId>
54 <version>${javafx.version}</version>
55 <scope>provided</scope>
56 </dependency>
57 <dependency>
58 <groupId>org.openjfx</groupId>
59 <artifactId>javafx-controls</artifactId>
60 <version>${javafx.version}</version>
61 <scope>provided</scope>
62 </dependency>
63 <dependency>
64 <groupId>org.openjfx</groupId>
65 <artifactId>javafx-base</artifactId>
66 <version>${javafx.version}</version>
67 <scope>provided</scope>
68 </dependency>
69 <dependency>
70 <groupId>org.openjfx</groupId>
71 <artifactId>javafx-graphics</artifactId>
72 <version>${javafx.version}</version>
73 <scope>provided</scope>
74 </dependency>
75 </dependencies>
76 <build>
77 <plugins>
78 <plugin>
79 <groupId>org.apache.maven.plugins</groupId>
80 <artifactId>maven-jar-plugin</artifactId>
81 <configuration>
82 <archive>
83 <manifestEntries>
84 <Plugin-Early>${plugin.early}</Plugin-Early>
85 <Plugin-Stage>${plugin.stage}</Plugin-Stage>
86 </manifestEntries>
87 </archive>
88 </configuration>
89 </plugin>
90 </plugins>
91 </build>
92</project>
Note: See TracBrowser for help on using the repository browser.