Skip to content

Commit 84bf050

Browse files
committed
Attempt at fixing submodule with Maven
1 parent 89ce199 commit 84bf050

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

pom.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,23 @@
9898
<maxmem>256m</maxmem>
9999
</configuration>
100100
</plugin>
101+
<plugin>
102+
<groupId>org.codehaus.mojo</groupId>
103+
<artifactId>exec-maven-plugin</artifactId>
104+
<version>1.1</version>
105+
<executions>
106+
<execution>
107+
<phase>initialize</phase>
108+
<id>invoke build</id>
109+
<goals>
110+
<goal>exec</goal>
111+
</goals>
112+
</execution>
113+
</executions>
114+
<configuration>
115+
<executable>git submodule update --init --recursive</executable>
116+
</configuration>
117+
</plugin>
101118
</plugins>
102119
</build>
103120
<parent>

0 commit comments

Comments
 (0)