This is an automated email from the ASF dual-hosted git repository.

lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new 420c01ab98 GH-41787: Update fmpp-maven-plugin output directory (#41788)
420c01ab98 is described below

commit 420c01ab98295c7ee2f3ef640da911e4e8276a1c
Author: Laurent Goujon <[email protected]>
AuthorDate: Wed May 22 18:55:38 2024 -0700

    GH-41787: Update fmpp-maven-plugin output directory (#41788)
    
    ### Rationale for this change
    
    Per convention fmpp-maven-plugin should not directly generate files under 
target/generated-sources but into a subdirectory.
    
    ### What changes are included in this PR?
    
    Changing config to output files under `target/generated-sources/fmpp`
    
    ### Are these changes tested?
    
    CI
    
    ### Are there any user-facing changes?
    
    No
    * GitHub Issue: #41787
    
    Authored-by: Laurent Goujon <[email protected]>
    Signed-off-by: David Li <[email protected]>
---
 java/vector/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/java/vector/pom.xml b/java/vector/pom.xml
index 07af93a499..a315bbc03a 100644
--- a/java/vector/pom.xml
+++ b/java/vector/pom.xml
@@ -199,7 +199,7 @@
             <phase>generate-sources</phase>
             <configuration>
               <config>src/main/codegen/config.fmpp</config>
-              <output>${project.build.directory}/generated-sources</output>
+              
<output>${project.build.directory}/generated-sources/fmpp</output>
               
<templates>${project.build.directory}/codegen/templates</templates>
             </configuration>
           </execution>

Reply via email to