Skip to content

Commit 6568405

Browse files
author
Johan Vos
committed
8207273: Add missing javafx.pom file
Reviewed-by: kcr
1 parent 5a18677 commit 6568405

File tree

1 file changed

+63
-0
lines changed

1 file changed

+63
-0
lines changed

javafx.pom

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<groupId>org.openjfx</groupId>
7+
<artifactId>javafx</artifactId>
8+
<version>@VERSION@</version>
9+
<packaging>pom</packaging>
10+
<name>openjfx</name>
11+
<description>OpenJFX JavaFX</description>
12+
<properties>
13+
<javafx.version>@VERSION@</javafx.version>
14+
</properties>
15+
<dependencyManagement>
16+
</dependencyManagement>
17+
<profiles>
18+
<profile>
19+
<id>linux</id>
20+
<activation>
21+
<os>
22+
<name>linux</name>
23+
</os>
24+
</activation>
25+
<properties>
26+
<javafx.platform>linux</javafx.platform>
27+
</properties>
28+
</profile>
29+
<profile>
30+
<id>macosx</id>
31+
<activation>
32+
<os>
33+
<name>mac os x</name>
34+
</os>
35+
</activation>
36+
<properties>
37+
<javafx.platform>mac</javafx.platform>
38+
</properties>
39+
</profile>
40+
<profile>
41+
<id>windows</id>
42+
<activation>
43+
<os>
44+
<family>windows</family>
45+
</os>
46+
</activation>
47+
<properties>
48+
<javafx.platform>win</javafx.platform>
49+
</properties>
50+
</profile>
51+
<profile>
52+
<id>javafx.platform.custom</id>
53+
<activation>
54+
<property>
55+
<name>javafx.platform</name>
56+
</property>
57+
</activation>
58+
<properties>
59+
<javafx.platform>${javafx.platform}</javafx.platform>
60+
</properties>
61+
</profile>
62+
</profiles>
63+
</project>

0 commit comments

Comments
 (0)