Skip to content

Commit ebdeefc

Browse files
author
Matt
committed
updating dependencies and adding logger config file
1 parent b38f73e commit ebdeefc

2 files changed

Lines changed: 86 additions & 18 deletions

File tree

‎pom.xml‎

Lines changed: 73 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,11 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7+
<groupId>io.github.makbn</groupId>
78
<artifactId>jlmap</artifactId>
8-
<version>1.6</version>
9+
<version>1.9.4</version>
910
<packaging>jar</packaging>
10-
11-
12-
<parent>
13-
<artifactId>datadispersion</artifactId>
14-
<groupId>io.github.makbn</groupId>
15-
<version>1.6</version>
16-
</parent>
11+
<name>Java Leaflet (JLeaflet)</name>
1712

1813
<developers>
1914
<developer>
@@ -26,15 +21,19 @@
2621
<build>
2722
<plugins>
2823
<plugin>
29-
<version>2.4</version>
24+
<version>3.11.0</version>
3025
<groupId>org.apache.maven.plugins</groupId>
3126
<artifactId>maven-compiler-plugin</artifactId>
3227
<configuration>
33-
<source>8</source>
34-
<target>8</target>
28+
<source>17</source>
29+
<target>17</target>
3530
</configuration>
3631
</plugin>
37-
32+
<plugin>
33+
<groupId>org.openjfx</groupId>
34+
<artifactId>javafx-maven-plugin</artifactId>
35+
<version>0.0.8</version>
36+
</plugin>
3837
<plugin>
3938
<artifactId>maven-assembly-plugin</artifactId>
4039
<executions>
@@ -60,8 +59,45 @@
6059
</plugins>
6160
</build>
6261

62+
<dependencyManagement>
63+
<dependencies>
64+
<dependency>
65+
<groupId>org.junit</groupId>
66+
<artifactId>junit-bom</artifactId>
67+
<version>5.10.0</version>
68+
<type>pom</type>
69+
<scope>import</scope>
70+
</dependency>
71+
</dependencies>
72+
</dependencyManagement>
73+
6374

6475
<dependencies>
76+
<dependency>
77+
<groupId>org.openjfx</groupId>
78+
<artifactId>javafx-controls</artifactId>
79+
<version>19.0.2.1</version>
80+
</dependency>
81+
<dependency>
82+
<groupId>org.openjfx</groupId>
83+
<artifactId>javafx-base</artifactId>
84+
<version>19.0.2.1</version>
85+
</dependency>
86+
<dependency>
87+
<groupId>org.openjfx</groupId>
88+
<artifactId>javafx-swing</artifactId>
89+
<version>19.0.2.1</version>
90+
</dependency>
91+
<dependency>
92+
<groupId>org.openjfx</groupId>
93+
<artifactId>javafx-web</artifactId>
94+
<version>19.0.2.1</version>
95+
</dependency>
96+
<dependency>
97+
<groupId>org.openjfx</groupId>
98+
<artifactId>javafx-graphics</artifactId>
99+
<version>17</version>
100+
</dependency>
65101
<dependency>
66102
<groupId>org.projectlombok</groupId>
67103
<artifactId>lombok</artifactId>
@@ -71,26 +107,45 @@
71107
<dependency>
72108
<groupId>org.apache.logging.log4j</groupId>
73109
<artifactId>log4j-api</artifactId>
74-
<version>2.17.1</version>
110+
<version>2.20.0</version>
75111
</dependency>
76112
<dependency>
77113
<groupId>org.apache.logging.log4j</groupId>
78114
<artifactId>log4j-core</artifactId>
79-
<version>2.17.1</version>
115+
<version>2.20.0</version>
80116
</dependency>
81117
<dependency>
82118
<groupId>com.google.code.gson</groupId>
83119
<artifactId>gson</artifactId>
84-
<version>2.8.9</version>
120+
<version>2.10.1</version>
121+
</dependency>
122+
<dependency>
123+
<groupId>com.fasterxml.jackson.core</groupId>
124+
<artifactId>jackson-databind</artifactId>
125+
<version>2.15.2</version>
85126
</dependency>
86-
87127
<dependency>
88128
<groupId>de.grundid.opendatalab</groupId>
89129
<artifactId>geojson-jackson</artifactId>
90130
<version>1.14</version>
131+
<exclusions>
132+
<exclusion>
133+
<groupId>com.fasterxml.jackson.core</groupId>
134+
<artifactId>jackson-databind</artifactId>
135+
</exclusion>
136+
</exclusions>
137+
</dependency>
138+
<dependency>
139+
<groupId>org.jetbrains</groupId>
140+
<artifactId>annotations</artifactId>
141+
<version>RELEASE</version>
142+
<scope>compile</scope>
143+
</dependency>
144+
<dependency>
145+
<groupId>org.junit.jupiter</groupId>
146+
<artifactId>junit-jupiter</artifactId>
147+
<scope>test</scope>
91148
</dependency>
92-
93-
94149
</dependencies>
95150

96151
</project>

‎src/main/resources/log4j2.xml‎

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Configuration status="INFO">
3+
<Appenders>
4+
<Console name="Console" target="SYSTEM_OUT">
5+
<PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
6+
</Console>
7+
</Appenders>
8+
<Loggers>
9+
<Root level="info">
10+
<AppenderRef ref="Console"/>
11+
</Root>
12+
</Loggers>
13+
</Configuration>

0 commit comments

Comments
 (0)