build(agent): allow surefire tests to run in react-agent test module

The root POM hardcodes skipTests=true in pluginManagement. Override
at module level with ${maven.test.skip} so tests actually execute
when invoked.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
everywhere.z
2026-05-31 18:40:15 +08:00
parent 29e387426a
commit ec5562c45f

View File

@@ -67,4 +67,16 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>${maven.test.skip}</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</project>