Copilot commented on code in PR #17327:
URL: https://github.com/apache/pinot/pull/17327#discussion_r2615802522


##########
pom.xml:
##########
@@ -2944,6 +2944,29 @@
           </properties>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>de.shadowhunt.maven.plugins</groupId>
+        <artifactId>package-info-maven-plugin</artifactId>
+        <version>2.0.0</version>
+        <executions>
+          <execution>
+            <phase>generate-sources</phase>
+            <goals>
+              <goal>package-info</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <packages>
+            <package regex="org.apache.pinot.**">

Review Comment:
   The regex pattern `org.apache.pinot.**` is invalid. Maven plugins typically 
expect glob patterns (not regex) where `**` matches multiple path segments. The 
correct pattern should be `org.apache.pinot.*` for direct subpackages or the 
plugin may use a different matching syntax. Verify the plugin documentation for 
the correct pattern syntax to match all Pinot packages.
   ```suggestion
               <package name="org.apache.pinot.*">
   ```



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to