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

dlmarion pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo-access.git


The following commit(s) were added to refs/heads/main by this push:
     new c70d418  Replace maven.multiModuleProjectDirectory with ".." (#94)
c70d418 is described below

commit c70d418ef10c008344df860c787fe947d5ef8a3a
Author: Dave Marion <[email protected]>
AuthorDate: Mon Dec 22 08:46:56 2025 -0500

    Replace maven.multiModuleProjectDirectory with ".." (#94)
    
    The poms were using maven.multiModuleProjectDirectory to get the
    parent directory in each module pom. This was working locally, but
    the builds on ci-builds.apache.org didn't like it for some reason.
    Removing the property and replacing with ".." to see if that will
    fix the issue.
---
 antlr4-example/pom.xml | 2 +-
 pom.xml                | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/antlr4-example/pom.xml b/antlr4-example/pom.xml
index daa2966..3ccebbc 100644
--- a/antlr4-example/pom.xml
+++ b/antlr4-example/pom.xml
@@ -108,7 +108,7 @@
               
<outputDirectory>${project.basedir}/target/test-classes</outputDirectory>
               <resources>
                 <resource>
-                  
<directory>${maven.multiModuleProjectDirectory}/core/src/main/resources/org/apache/accumulo/access/specification</directory>
+                  
<directory>../core/src/main/resources/org/apache/accumulo/access/specification</directory>
                   <filtering>false</filtering>
                   <includes>
                     <include>AccessExpression.abnf</include>
diff --git a/pom.xml b/pom.xml
index 2e1ef63..b46e460 100644
--- a/pom.xml
+++ b/pom.xml
@@ -507,14 +507,14 @@
               <outputDirectory>${basedir}/target/test-classes</outputDirectory>
               <resources>
                 <resource>
-                  <directory>${maven.multiModuleProjectDirectory}</directory>
+                  <directory>..</directory>
                   <filtering>false</filtering>
                   <includes>
                     <include>SPECIFICATION.md</include>
                   </includes>
                 </resource>
                 <resource>
-                  
<directory>${maven.multiModuleProjectDirectory}/src/test/resources</directory>
+                  <directory>../src/test/resources</directory>
                   <filtering>false</filtering>
                   <includes>
                     <include>testdata.json</include>

Reply via email to