Skip to content

Commit

Permalink
Fixing maven pom spotless error
Browse files Browse the repository at this point in the history
  • Loading branch information
joakime committed Jun 20, 2024
1 parent 5bbd012 commit 5927b62
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions jetty-xml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,17 @@
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<argLine>@{argLine} ${jetty.surefire.argLine} --add-reads org.eclipse.jetty.xml=org.eclipse.jetty.logging</argLine>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
<argLine>@{argLine} ${jetty.surefire.argLine} --add-reads org.eclipse.jetty.xml=org.eclipse.jetty.logging</argLine>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit 5927b62

Please sign in to comment.