Skip to content

Commit

Permalink
Bump maven.surefire.plugin.version from 3.0.0-M5 to 3.0.0-M8 (#9255)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored and olamy committed Feb 5, 2023
1 parent 9916706 commit 44cd3ee
Show file tree
Hide file tree
Showing 10 changed files with 60 additions and 5 deletions.
3 changes: 2 additions & 1 deletion jetty-core/jetty-deploy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
<argLine>
@{argLine} ${jetty.surefire.argLine}
--add-modules org.eclipse.jetty.jmx
--add-reads org.eclipse.jetty.deploy=org.eclipse.jetty.http
--add-reads org.eclipse.jetty.deploy=org.eclipse.jetty.http,jetty.servlet.api
--add-reads org.eclipse.jetty.deploy=org.eclipse.jetty.logging
</argLine>
</configuration>
</plugin>
Expand Down
14 changes: 14 additions & 0 deletions jetty-core/jetty-fcgi/jetty-fcgi-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,20 @@
<bundle-symbolic-name>${project.groupId}.server</bundle-symbolic-name>
</properties>

<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>
@{argLine} ${jetty.surefire.argLine}
--add-reads org.eclipse.jetty.fcgi.server=org.eclipse.jetty.logging
</argLine>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
1 change: 1 addition & 0 deletions jetty-core/jetty-http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>
Expand Down
11 changes: 11 additions & 0 deletions jetty-core/jetty-http2/jetty-http2-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@

<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>
@{argLine} ${jetty.surefire.argLine}
--add-modules jetty.servlet.api
--add-reads org.eclipse.jetty.http2.server=jetty.servlet.api
--add-reads org.eclipse.jetty.http2.server=org.eclipse.jetty.logging
</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>h2spec-maven-plugin</artifactId>
Expand Down
13 changes: 13 additions & 0 deletions jetty-core/jetty-io/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,17 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>
@{argLine} ${jetty.surefire.argLine} --add-reads org.eclipse.jetty.io=org.eclipse.jetty.logging
</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project>
1 change: 1 addition & 0 deletions jetty-core/jetty-xml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>
Expand Down
4 changes: 3 additions & 1 deletion jetty-ee10/jetty-ee10-annotations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>
@{argLine} ${jetty.surefire.argLine} --add-reads org.eclipse.jetty.ee10.annotations=org.eclipse.jetty.logging --add-opens org.eclipse.jetty.ee10.annotations/org.eclipse.jetty.ee10.annotations.resources=org.eclipse.jetty.ee10.plus
@{argLine} ${jetty.surefire.argLine}
--add-reads org.eclipse.jetty.ee10.annotations=org.eclipse.jetty.logging
--add-opens org.eclipse.jetty.ee10.annotations/org.eclipse.jetty.ee10.annotations.resources=org.eclipse.jetty.ee10.plus
</argLine>
</configuration>
</plugin>
Expand Down
11 changes: 10 additions & 1 deletion jetty-ee10/jetty-ee10-servlets/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,16 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>
@{argLine} ${jetty.surefire.argLine} --add-modules jakarta.servlet --add-modules org.eclipse.jetty.util --add-modules org.eclipse.jetty.io --add-modules org.eclipse.jetty.http --add-modules org.eclipse.jetty.server --add-reads org.eclipse.jetty.servlets=java.management --add-reads org.eclipse.jetty.servlets=org.eclipse.jetty.jmx
@{argLine} ${jetty.surefire.argLine}
--add-modules jakarta.servlet
--add-modules org.eclipse.jetty.util
--add-modules org.eclipse.jetty.io
--add-modules org.eclipse.jetty.http
--add-modules org.eclipse.jetty.server
--add-modules org.eclipse.jetty.jmx
--add-reads org.eclipse.jetty.servlets=java.management
--add-reads org.eclipse.jetty.servlets=org.eclipse.jetty.jmx
--add-reads org.eclipse.jetty.servlets=org.eclipse.jetty.logging
</argLine>
</configuration>
</plugin>
Expand Down
5 changes: 4 additions & 1 deletion jetty-ee9/jetty-ee9-nested/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>
@{argLine} ${jetty.surefire.argLine} --add-reads org.eclipse.jetty.ee9.nested=org.eclipse.jetty.logging --add-opens org.eclipse.jetty.server/org.eclipse.jetty.server=ALL-UNNAMED
@{argLine} ${jetty.surefire.argLine}
--add-reads org.eclipse.jetty.ee9.nested=org.eclipse.jetty.logging
--add-opens org.eclipse.jetty.server/org.eclipse.jetty.server=ALL-UNNAMED
--add-reads org.eclipse.jetty.server=org.eclipse.jetty.logging
</argLine>
</configuration>
</plugin>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
<maven.resources.plugin.version>3.3.0</maven.resources.plugin.version>
<maven.shade.plugin.version>3.4.1</maven.shade.plugin.version>
<maven.site.plugin.version>3.12.0</maven.site.plugin.version>
<maven.surefire.plugin.version>3.0.0-M7</maven.surefire.plugin.version>
<maven.surefire.plugin.version>3.0.0-M8</maven.surefire.plugin.version>
<maven.source.plugin.version>3.2.1</maven.source.plugin.version>
<maven.war.plugin.version>3.3.2</maven.war.plugin.version>
<spotbugs.maven.plugin.version>4.7.2.0</spotbugs.maven.plugin.version>
Expand Down

0 comments on commit 44cd3ee

Please sign in to comment.