Skip to content

Commit b085a45

Browse files
committed
Merge branch with dependency updates'
2 parents 1a7009f + 1c72fbd commit b085a45

3 files changed

Lines changed: 14 additions & 17 deletions

File tree

frontend-maven-plugin/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,21 @@
3232
<dependency>
3333
<groupId>org.apache.maven</groupId>
3434
<artifactId>maven-core</artifactId>
35-
<version>3.9.2</version>
35+
<version>3.9.11</version>
3636
<scope>provided</scope>
3737
</dependency>
3838

3939
<dependency>
4040
<groupId>org.apache.maven</groupId>
4141
<artifactId>maven-plugin-api</artifactId>
42-
<version>3.9.2</version>
42+
<version>3.9.11</version>
4343
<scope>provided</scope>
4444
</dependency>
4545

4646
<dependency>
4747
<groupId>org.apache.maven.plugin-tools</groupId>
4848
<artifactId>maven-plugin-annotations</artifactId>
49-
<version>3.9.0</version>
49+
<version>3.15.2</version>
5050
<scope>provided</scope>
5151
</dependency>
5252

frontend-plugin-core/pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
<dependency>
1717
<groupId>com.fasterxml.jackson.core</groupId>
1818
<artifactId>jackson-core</artifactId>
19-
<version>2.13.0</version>
19+
<version>2.20.1</version>
2020
</dependency>
2121

2222
<dependency>
2323
<groupId>com.fasterxml.jackson.core</groupId>
2424
<artifactId>jackson-databind</artifactId>
25-
<version>2.13.4.2</version>
25+
<version>2.20.1</version>
2626
</dependency>
2727

2828
<dependency>
@@ -40,37 +40,37 @@
4040
<dependency>
4141
<groupId>org.apache.commons</groupId>
4242
<artifactId>commons-exec</artifactId>
43-
<version>1.3</version>
43+
<version>1.6.0</version>
4444
</dependency>
4545

4646
<dependency>
4747
<groupId>org.apache.httpcomponents</groupId>
4848
<artifactId>httpclient</artifactId>
49-
<version>4.5.13</version>
49+
<version>4.5.14</version>
5050
</dependency>
5151

5252
<dependency>
5353
<groupId>org.codehaus.plexus</groupId>
5454
<artifactId>plexus-utils</artifactId>
55-
<version>4.0.0</version>
55+
<version>4.0.2</version>
5656
</dependency>
5757

5858
<dependency>
5959
<groupId>org.slf4j</groupId>
6060
<artifactId>slf4j-api</artifactId>
61-
<version>1.7.5</version>
61+
<version>2.0.17</version>
6262
</dependency>
6363

6464
<dependency>
6565
<groupId>org.junit.jupiter</groupId>
6666
<artifactId>junit-jupiter-engine</artifactId>
67-
<version>5.8.1</version>
67+
<version>6.0.1</version>
6868
<scope>test</scope>
6969
</dependency>
7070
<dependency>
7171
<groupId>org.hamcrest</groupId>
7272
<artifactId>hamcrest</artifactId>
73-
<version>2.2</version>
73+
<version>3.0</version>
7474
<scope>test</scope>
7575
</dependency>
7676
</dependencies>

pom.xml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88

99
<properties>
1010
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11-
<java.version>1.8</java.version>
12-
<maven.compiler.source>1.8</maven.compiler.source>
13-
<maven.compiler.target>1.8</maven.compiler.target>
11+
<java.version>17</java.version>
1412
</properties>
1513

1614
<name>Frontend Plugins</name>
@@ -126,8 +124,7 @@
126124
<artifactId>maven-compiler-plugin</artifactId>
127125
<version>3.11.0</version>
128126
<configuration>
129-
<source>1.8</source>
130-
<target>1.8</target>
127+
<release>${java.version}</release>
131128
</configuration>
132129
</plugin>
133130
<plugin>
@@ -148,7 +145,7 @@
148145
<artifactId>maven-javadoc-plugin</artifactId>
149146
<version>3.5.0</version>
150147
<configuration>
151-
<source>${maven.compiler.source}</source>
148+
<source>${java.version}</source>
152149
</configuration>
153150
<executions>
154151
<execution>

0 commit comments

Comments
 (0)