gaoyunhaii commented on code in PR #21736:
URL: https://github.com/apache/flink/pull/21736#discussion_r1178126387
##########
flink-test-utils-parent/flink-migration-test-utils/README.md:
##########
@@ -0,0 +1,103 @@
+# Add State Migration Tests
+
+This module collects tools that help to generate test data for the state
migration tests.
+
+The following dependency need to be added to the module's Maven config in case
a
+migration test is meant to be added to that module:
+
+```xml
+<dependency>
+ <groupId>org.apache.flink</groupId>
+ <artifactId>fink-migration-test-utils</artifactId>
+ <version>${project.version}</version>
+ <scope>test</scope>
+</dependency>
+```
+
+and the following profile
+
+```xml
+<profile>
+ <id>generate-migration-test-data</id>
+ <activation>
+ <property>
+ <name>generate-migration-test-data</name>
+ </property>
+ </activation>
Review Comment:
That should be indeed redundant, I'll remove this part as a whole.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]