Skip to content

Commit 26e066f

Browse files
ddamkeddamke
authored andcommitted
Merge remote-tracking branch 'origin/feature/import_sql_to_database' into feature/import_sql_to_database
2 parents 4d1a340 + 7e40d48 commit 26e066f

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<parent>
2828
<groupId>org.springframework.boot</groupId>
2929
<artifactId>spring-boot-starter-parent</artifactId>
30-
<version>2.7.4</version>
30+
<version>2.7.5</version>
3131
<relativePath /> <!-- lookup parent from repository -->
3232
</parent>
3333

@@ -67,11 +67,11 @@
6767
<artifactId>flyway-core</artifactId>
6868
</dependency>
6969

70-
<!-- https://mvnrepository.com/artifact/com.1stleg/jnativehook -->
70+
<!-- https://mvnrepository.com/artifact/com.github.kwhat/jnativehook -->
7171
<dependency>
72-
<groupId>com.1stleg</groupId>
72+
<groupId>com.github.kwhat</groupId>
7373
<artifactId>jnativehook</artifactId>
74-
<version>2.1.0</version>
74+
<version>2.2.2</version>
7575
</dependency>
7676

7777
<!-- maven assembly plugin -->
@@ -153,7 +153,7 @@
153153
<plugin>
154154
<groupId>org.apache.maven.plugins</groupId>
155155
<artifactId>maven-site-plugin</artifactId>
156-
<version>3.9.1</version>
156+
<version>3.12.1</version>
157157
</plugin>
158158

159159
<plugin>

src/main/java/de/doubleslash/keeptime/viewpopup/GlobalScreenListener.java

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,15 @@
2424
import java.util.logging.Level;
2525
import java.util.logging.Logger;
2626

27-
import org.jnativehook.GlobalScreen;
28-
import org.jnativehook.NativeHookException;
29-
import org.jnativehook.keyboard.NativeKeyEvent;
30-
import org.jnativehook.keyboard.NativeKeyListener;
31-
import org.jnativehook.mouse.NativeMouseEvent;
32-
import org.jnativehook.mouse.NativeMouseMotionListener;
3327
import org.slf4j.LoggerFactory;
3428

29+
import com.github.kwhat.jnativehook.GlobalScreen;
30+
import com.github.kwhat.jnativehook.NativeHookException;
31+
import com.github.kwhat.jnativehook.keyboard.NativeKeyEvent;
32+
import com.github.kwhat.jnativehook.keyboard.NativeKeyListener;
33+
import com.github.kwhat.jnativehook.mouse.NativeMouseEvent;
34+
import com.github.kwhat.jnativehook.mouse.NativeMouseMotionListener;
35+
3536
import javafx.application.Platform;
3637

3738
/**

0 commit comments

Comments
 (0)