Skip to content

Commit

Permalink
[MSHARED-1437] Upgrade plugins and components (in ITs)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-o committed Oct 10, 2024
1 parent fc982d1 commit a4d9b2f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<doxiaVersion>2.0.0</doxiaVersion>
<doxiaSitetoolsVersion>2.0.0</doxiaSitetoolsVersion>
<reportingApiVersion>4.0.0</reportingApiVersion>
<pluginToolsVersion>3.13.0</pluginToolsVersion>
<pluginToolsVersion>3.15.0</pluginToolsVersion>
<project.build.outputTimestamp>2024-05-25T09:22:31Z</project.build.outputTimestamp>
</properties>

Expand Down
4 changes: 2 additions & 2 deletions src/it/setup-reporting-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ under the License.
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<version>3.13.0</version>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>3.1.1</version>
<version>3.1.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
4 changes: 2 additions & 2 deletions src/it/use-as-site-report/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>4.0.0-M14</version>
<version>3.20.0</version>
</plugin>
</plugins>
</build>
Expand All @@ -47,7 +47,7 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.5.0</version>
<version>3.7.0</version>
<reportSets>
<reportSet>
<reports>
Expand Down
2 changes: 1 addition & 1 deletion src/it/use-as-site-report/verify.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ assert f.exists();
text = f.text.normalize();
assert text.contains( 'Custom Maven Report with Renderer content.' );
assert text.contains( '<pre>Custom verbatim text.</pre>' );
assert text.contains( '<pre><code>var custom_code = true;</code></pre>' );
assert text.contains( '<pre class="prettyprint"><code>var custom_code = true;</code></pre>' );

f = new File( site, 'external/report.html' );
assert f.exists();
Expand Down

0 comments on commit a4d9b2f

Please sign in to comment.