You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by gn...@apache.org on 2022/01/28 22:11:47 UTC

[maven-mvnd] 01/01: mvn4 aggregator

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

gnodet pushed a commit to branch mvn4
in repository https://gitbox.apache.org/repos/asf/maven-mvnd.git

commit 9ba59f06529c411b1cfba64e8516b39aac7baf48
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Fri Jan 28 23:11:38 2022 +0100

    mvn4 aggregator
---
 dist/pom.xml |  4 ++++
 pom.xml      | 14 +++++++++++++-
 2 files changed, 17 insertions(+), 1 deletion(-)

diff --git a/dist/pom.xml b/dist/pom.xml
index 55e1388..cda03df 100644
--- a/dist/pom.xml
+++ b/dist/pom.xml
@@ -47,6 +47,10 @@
             <groupId>org.mvndaemon.mvnd</groupId>
             <artifactId>mvnd-daemon</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.mvndaemon.mvnd</groupId>
+            <artifactId>mvnd-synccontext</artifactId>
+        </dependency>
     </dependencies>
 
     <build>
diff --git a/pom.xml b/pom.xml
index 0c29651..2951cfe 100644
--- a/pom.xml
+++ b/pom.xml
@@ -245,6 +245,11 @@
                 <artifactId>mvnd-helper-agent</artifactId>
                 <version>0.7.2-SNAPSHOT</version>
             </dependency>
+            <dependency>
+                <groupId>org.mvndaemon.mvnd</groupId>
+                <artifactId>mvnd-synccontext</artifactId>
+                <version>0.7.2-SNAPSHOT</version>
+            </dependency>
 
             <dependency>
                 <groupId>org.jline</groupId>
@@ -367,11 +372,18 @@ limitations under the License.</inlineHeader>
                     <artifactId>formatter-maven-plugin</artifactId>
                     <version>${formatter-maven-plugin.version}</version>
                     <configuration>
-                        <configFile>${maven.multiModuleProjectDirectory}/build/eclipse-formatter-config.xml</configFile>
+                        <configFile>config/eclipse-formatter-config.xml</configFile>
                         <skip>${format.skip}</skip>
                         <lineEnding>KEEP</lineEnding>
                         <cachedir>${project.build.directory}/cache</cachedir>
                     </configuration>
+                    <dependencies>
+                        <dependency>
+                            <groupId>org.apache.maven.shared</groupId>
+                            <artifactId>maven-shared-resources</artifactId>
+                            <version>5-SNAPSHOT</version>
+                        </dependency>
+                    </dependencies>
                 </plugin>
                 <plugin>
                     <groupId>net.revelc.code</groupId>