Skip to content

Commit 9013797

Browse files
authored
chore: bump dependencies and consistent jvm target (#121)
1 parent ae9e011 commit 9013797

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

pom.xml

+13-5
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<dependency>
2222
<groupId>io.javalin</groupId>
2323
<artifactId>javalin</artifactId>
24-
<version>5.0.0</version>
24+
<version>5.0.1</version>
2525
</dependency>
2626
<dependency>
2727
<groupId>com.nixxcode.jvmbrotli</groupId>
@@ -36,7 +36,7 @@
3636
<dependency>
3737
<groupId>org.apache.commons</groupId>
3838
<artifactId>commons-lang3</artifactId>
39-
<version>3.7</version>
39+
<version>3.12.0</version>
4040
</dependency>
4141
<dependency>
4242
<groupId>org.slf4j</groupId>
@@ -62,13 +62,13 @@
6262
<dependency>
6363
<groupId>com.h2database</groupId>
6464
<artifactId>h2</artifactId>
65-
<version>2.1.212</version>
65+
<version>2.1.214</version>
6666
<scope>runtime</scope>
6767
</dependency>
6868
<dependency>
6969
<groupId>com.zaxxer</groupId>
7070
<artifactId>HikariCP</artifactId>
71-
<version>4.0.3</version>
71+
<version>5.0.1</version>
7272
</dependency>
7373
</dependencies>
7474

@@ -102,7 +102,7 @@
102102
</execution>
103103
</executions>
104104
<configuration>
105-
<jvmTarget>1.8</jvmTarget>
105+
<jvmTarget>11</jvmTarget>
106106
</configuration>
107107
</plugin>
108108
<plugin>
@@ -127,6 +127,14 @@
127127
</execution>
128128
</executions>
129129
</plugin>
130+
<plugin>
131+
<groupId>org.apache.maven.plugins</groupId>
132+
<artifactId>maven-compiler-plugin</artifactId>
133+
<configuration>
134+
<source>11</source>
135+
<target>11</target>
136+
</configuration>
137+
</plugin>
130138

131139
<plugin>
132140
<groupId>com.heroku.sdk</groupId>

0 commit comments

Comments
 (0)