|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>com.googlecode.libphonenumber</groupId> |
5 | 5 | <artifactId>libphonenumber-parent</artifactId> |
6 | | - <version>9.0.9-SNAPSHOT</version> |
| 6 | + <version>9.0.10-SNAPSHOT</version> |
7 | 7 | <packaging>pom</packaging> |
| 8 | + <name>libphonenumber-parent</name> |
8 | 9 | <url>https://github.com/google/libphonenumber/</url> |
9 | 10 |
|
10 | 11 | <description> |
|
166 | 167 | <encoding>UTF-8</encoding> |
167 | 168 | </configuration> |
168 | 169 | </plugin> |
| 170 | + <plugin> |
| 171 | + <groupId>org.apache.maven.plugins</groupId> |
| 172 | + <artifactId>maven-gpg-plugin</artifactId> |
| 173 | + <version>3.1.0</version> |
| 174 | + <executions> |
| 175 | + <execution> |
| 176 | + <id>sign-artifacts</id> |
| 177 | + <phase>verify</phase> |
| 178 | + <goals> |
| 179 | + <goal>sign</goal> |
| 180 | + </goals> |
| 181 | + </execution> |
| 182 | + </executions> |
| 183 | + <configuration> |
| 184 | + <gpgArguments> |
| 185 | + <arg>--batch</arg> |
| 186 | + <arg>--yes</arg> |
| 187 | + <arg>--pinentry-mode</arg> |
| 188 | + <arg>loopback</arg> |
| 189 | + </gpgArguments> |
| 190 | + </configuration> |
| 191 | + </plugin> |
169 | 192 | <plugin> |
170 | 193 | <groupId>org.sonatype.central</groupId> |
171 | 194 | <artifactId>central-publishing-maven-plugin</artifactId> |
|
178 | 201 | </plugins> |
179 | 202 | </build> |
180 | 203 |
|
181 | | - <profiles> |
182 | | - <profile> |
183 | | - <id>release-sign-artifacts</id> |
184 | | - <activation> |
185 | | - <property> |
186 | | - <name>performRelease</name> |
187 | | - <value>true</value> |
188 | | - </property> |
189 | | - </activation> |
190 | | - <build> |
191 | | - <plugins> |
192 | | - <plugin> |
193 | | - <groupId>org.apache.maven.plugins</groupId> |
194 | | - <artifactId>maven-gpg-plugin</artifactId> |
195 | | - <version>3.1.0</version> |
196 | | - <executions> |
197 | | - <execution> |
198 | | - <id>sign-artifacts</id> |
199 | | - <phase>verify</phase> |
200 | | - <goals> |
201 | | - <goal>sign</goal> |
202 | | - </goals> |
203 | | - </execution> |
204 | | - </executions> |
205 | | - </plugin> |
206 | | - </plugins> |
207 | | - </build> |
208 | | - </profile> |
209 | | - </profiles> |
210 | | - |
211 | 204 | <!-- Until 08. Dec 2016, this pom worked with maven-release-plugin at 2.2.1 |
212 | 205 | and default SCM dependencies. On 11. Jan, 2017 that was no longer the |
213 | 206 | case, presumably because the default SCM version changed (cannot find |
|
0 commit comments