Skip to content
This repository was archived by the owner on Jan 18, 2024. It is now read-only.

Commit 7685c77

Browse files
committed
Fixed merge
1 parent b80c360 commit 7685c77

4 files changed

Lines changed: 17 additions & 17 deletions

File tree

pom.xml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<connection>https://github.com/xdev-software/xapi-fx.git</connection>
1818
</scm>
1919

20-
<inceptionYear>2021</inceptionYear>
20+
<inceptionYear>2003</inceptionYear>
2121

2222
<organization>
2323
<name>XDEV Software</name>
@@ -85,8 +85,16 @@
8585
</distributionManagement>
8686
<dependencies>
8787

88-
<!-- There are no JavaFX dependencies here, because with Java8 JavaFX has
89-
to come with the JDK. There are no maven dependencies we can use. -->
88+
<dependency>
89+
<groupId>org.openjfx</groupId>
90+
<artifactId>javafx-swing</artifactId>
91+
<version>16</version>
92+
</dependency>
93+
<dependency>
94+
<groupId>org.openjfx</groupId>
95+
<artifactId>javafx-web</artifactId>
96+
<version>16</version>
97+
</dependency>
9098

9199
</dependencies>
92100

@@ -131,17 +139,12 @@
131139
<plugin>
132140
<artifactId>maven-surefire-plugin</artifactId>
133141
<version>3.0.0-M5</version>
134-
<configuration>
135-
<excludedGroups>
136-
xdev.test.UITest
137-
</excludedGroups>
138-
</configuration>
139142
</plugin>
140143

141144
<plugin>
142145
<groupId>org.apache.maven.plugins</groupId>
143146
<artifactId>maven-enforcer-plugin</artifactId>
144-
<version>3.0.0-M3</version>
147+
<version>3.0.0</version>
145148
<executions>
146149
<execution>
147150
<id>enforce-maven</id>
@@ -191,10 +194,7 @@
191194
</goals>
192195
<phase>process-sources</phase>
193196
<configuration>
194-
<roots>
195-
<root>src/main/java</root>
196-
<root>src/test/java</root>
197-
</roots>
197+
<canUpdateCopyright>true</canUpdateCopyright>
198198
</configuration>
199199
</execution>
200200
</executions>
@@ -232,7 +232,7 @@
232232
</goals>
233233
</execution>
234234
</executions>
235-
</plugin>
235+
</plugin>
236236

237237
<plugin>
238238
<groupId>org.apache.maven.plugins</groupId>

src/main/java/xdev/ui/UIUtilsFX.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* #%L
55
* XDEV Application Framework JavaFX
66
* %%
7-
* Copyright (C) 2021 XDEV Software
7+
* Copyright (C) 2003 - 2021 XDEV Software
88
* %%
99
* This program is free software: you can redistribute it and/or modify
1010
* it under the terms of the GNU Lesser General Public License as

src/main/java/xdev/ui/XdevBrowser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* #%L
55
* XDEV Application Framework
66
* %%
7-
* Copyright (C) 2003 - 2020 XDEV Software
7+
* Copyright (C) 2003 - 2021 XDEV Software
88
* %%
99
* This program is free software: you can redistribute it and/or modify
1010
* it under the terms of the GNU Lesser General Public License as

src/main/java/xdev/ui/XdevJFXPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* #%L
55
* XDEV Application Framework
66
* %%
7-
* Copyright (C) 2003 - 2020 XDEV Software
7+
* Copyright (C) 2003 - 2021 XDEV Software
88
* %%
99
* This program is free software: you can redistribute it and/or modify
1010
* it under the terms of the GNU Lesser General Public License as

0 commit comments

Comments
 (0)