|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>com.maxmind.db</groupId> |
5 | 5 | <artifactId>maxmind-db</artifactId> |
6 | | - <version>3.0.1-SNAPSHOT</version> |
| 6 | + <version>3.1.1-SNAPSHOT</version> |
7 | 7 | <packaging>jar</packaging> |
8 | 8 | <name>MaxMind DB Reader</name> |
9 | 9 | <description>Reader for MaxMind DB</description> |
|
23 | 23 | <url>https://github.com/maxmind/MaxMind-DB-Reader-java</url> |
24 | 24 | <connection>scm:git:git://github.com:maxmind/MaxMind-DB-Reader-java.git</connection> |
25 | 25 | < developerConnection>scm:git: [email protected]:maxmind/MaxMind-DB-Reader-java.git</ developerConnection> |
26 | | - </scm> |
| 26 | + <tag>HEAD</tag> |
| 27 | + </scm> |
27 | 28 | <issueManagement> |
28 | 29 | <url>https://github.com/maxmind/MaxMind-DB-Reader-java/issues</url> |
29 | 30 | <system>GitHub</system> |
|
121 | 122 | <id>attach-sources</id> |
122 | 123 | <phase>package</phase> |
123 | 124 | <goals> |
124 | | - <goal>jar</goal> |
| 125 | + <goal>jar-no-fork</goal> |
125 | 126 | </goals> |
126 | 127 | </execution> |
127 | 128 | </executions> |
|
160 | 161 | <serviceName>travis-ci</serviceName> |
161 | 162 | </configuration> |
162 | 163 | </plugin> |
| 164 | + <plugin> |
| 165 | + <!-- |
| 166 | + We need this for updating the submodule during release. Maven SCM |
| 167 | + doesn't support this itself apparently. See |
| 168 | + https://github.com/apache/maven-scm/pull/179 |
| 169 | + --> |
| 170 | + <groupId>org.codehaus.mojo</groupId> |
| 171 | + <artifactId>exec-maven-plugin</artifactId> |
| 172 | + <!-- |
| 173 | + We are using 3.0.0 as 3.1.1 fails due to this issue: |
| 174 | + https://github.com/mojohaus/exec-maven-plugin/issues/373 |
| 175 | + --> |
| 176 | + <version>3.0.0</version> |
| 177 | + <executions> |
| 178 | + <execution> |
| 179 | + <phase>initialize</phase> |
| 180 | + <id>invoke build</id> |
| 181 | + <goals> |
| 182 | + <goal>exec</goal> |
| 183 | + </goals> |
| 184 | + </execution> |
| 185 | + </executions> |
| 186 | + <configuration> |
| 187 | + <executable>git</executable> |
| 188 | + <commandlineArgs>submodule update --init --recursive</commandlineArgs> |
| 189 | + </configuration> |
| 190 | + </plugin> |
163 | 191 | <plugin> |
164 | 192 | <groupId>org.codehaus.mojo</groupId> |
165 | 193 | <artifactId>versions-maven-plugin</artifactId> |
|
200 | 228 | <plugins> |
201 | 229 | <plugin> |
202 | 230 | <artifactId>maven-compiler-plugin</artifactId> |
| 231 | + <version>3.11.0</version> |
203 | 232 | <configuration> |
204 | 233 | <release>11</release> |
205 | 234 | </configuration> |
|
0 commit comments