Skip to content

Commit 0bc3ae7

Browse files
author
TheSnoozer
committed
add further debugging
1 parent 91bebf0 commit 0bc3ae7

File tree

3 files changed

+22
-34
lines changed

3 files changed

+22
-34
lines changed

pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,26 @@
8484
<target>${java.target}</target>
8585
</configuration>
8686
</plugin>
87+
88+
<plugin>
89+
<artifactId>maven-antrun-plugin</artifactId>
90+
<version>1.8</version>
91+
<executions>
92+
<execution>
93+
<phase>package</phase>
94+
<configuration>
95+
<target>
96+
<echo>root-dir: ${user.dir}</echo>
97+
<echo>basedir: ${basedir}</echo>
98+
<echo>project.basedir: ${project.basedir}</echo>
99+
</target>
100+
</configuration>
101+
<goals>
102+
<goal>run</goal>
103+
</goals>
104+
</execution>
105+
</executions>
106+
</plugin>
87107
</plugins>
88108
</build>
89109
</project>

submodule-one/pom.xml

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,7 @@
2020

2121
<build>
2222
<plugins>
23-
<plugin>
24-
<artifactId>maven-antrun-plugin</artifactId>
25-
<version>1.8</version>
26-
<executions>
27-
<execution>
28-
<phase>package</phase>
29-
<configuration>
30-
<target>
31-
<echo>project.basedir: ${project.basedir}</echo>
32-
</target>
33-
</configuration>
34-
<goals>
35-
<goal>run</goal>
36-
</goals>
37-
</execution>
38-
</executions>
39-
</plugin>
23+
4024
</plugins>
4125
</build>
4226
</project>

submodule-two/pom.xml

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,7 @@
2121

2222
<build>
2323
<plugins>
24-
<plugin>
25-
<artifactId>maven-antrun-plugin</artifactId>
26-
<version>1.8</version>
27-
<executions>
28-
<execution>
29-
<phase>package</phase>
30-
<configuration>
31-
<target>
32-
<echo>project.basedir: ${project.basedir}</echo>
33-
</target>
34-
</configuration>
35-
<goals>
36-
<goal>run</goal>
37-
</goals>
38-
</execution>
39-
</executions>
40-
</plugin>
24+
4125
</plugins>
4226
</build>
4327
</project>

0 commit comments

Comments
 (0)