Skip to content

Commit b4eb3bf

Browse files
committed
Added submodule init to pom.xml
1 parent 8448d18 commit b4eb3bf

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
CHANGELOG
22
=========
33

4-
0.5.0 (2013-09-XX)
4+
0.5.0 (2013-10-17)
55
------------------
66

77
* Reorganized the response and record classes. The response classes end

pom.xml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<dependency>
4040
<groupId>com.maxmind.db</groupId>
4141
<artifactId>maxminddb</artifactId>
42-
<version>0.2.1-SNAPSHOT</version>
42+
<version>0.3.0</version>
4343
</dependency>
4444
<dependency>
4545
<groupId>junit</groupId>
@@ -116,6 +116,24 @@
116116
</archive>
117117
</configuration>
118118
</plugin>
119+
<plugin>
120+
<groupId>org.codehaus.mojo</groupId>
121+
<artifactId>exec-maven-plugin</artifactId>
122+
<version>1.1</version>
123+
<executions>
124+
<execution>
125+
<phase>initialize</phase>
126+
<id>invoke build</id>
127+
<goals>
128+
<goal>exec</goal>
129+
</goals>
130+
</execution>
131+
</executions>
132+
<configuration>
133+
<executable>git</executable>
134+
<commandlineArgs>submodule update --init --recursive</commandlineArgs>
135+
</configuration>
136+
</plugin>
119137
</plugins>
120138
</build>
121139
<parent>

0 commit comments

Comments
 (0)