Skip to content

Commit fe1fc60

Browse files
committed
Regenerated client
1 parent 4de9150 commit fe1fc60

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed

pom.xml

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,71 @@
247247
</plugins>
248248
</build>
249249
</profile>
250+
<profile>
251+
<id>sonatypeDeploy</id>
252+
<build>
253+
<plugins>
254+
<plugin>
255+
<groupId>org.sonatype.central</groupId>
256+
<artifactId>central-publishing-maven-plugin</artifactId>
257+
<version>0.3.0</version>
258+
<extensions>true</extensions>
259+
<configuration>
260+
<publishingServerId>central</publishingServerId>
261+
<tokenAuth>true</tokenAuth>
262+
<autoPublish>true</autoPublish>
263+
<waitUntil>published</waitUntil>
264+
</configuration>
265+
</plugin>
266+
<plugin>
267+
<groupId>org.apache.maven.plugins</groupId>
268+
<artifactId>maven-source-plugin</artifactId>
269+
<version>3.3.0</version>
270+
<executions>
271+
<execution>
272+
<id>attach-sources</id>
273+
<goals>
274+
<goal>jar-no-fork</goal>
275+
</goals>
276+
</execution>
277+
</executions>
278+
</plugin>
279+
<plugin>
280+
<groupId>org.apache.maven.plugins</groupId>
281+
<artifactId>maven-javadoc-plugin</artifactId>
282+
<version>3.6.3</version>
283+
<executions>
284+
<execution>
285+
<id>attach-javadocs</id>
286+
<goals>
287+
<goal>jar</goal>
288+
</goals>
289+
</execution>
290+
</executions>
291+
</plugin>
292+
<plugin>
293+
<groupId>org.apache.maven.plugins</groupId>
294+
<artifactId>maven-gpg-plugin</artifactId>
295+
<version>3.1.0</version>
296+
<executions>
297+
<execution>
298+
<id>sign-artifacts</id>
299+
<phase>verify</phase>
300+
<goals>
301+
<goal>sign</goal>
302+
</goals>
303+
<configuration>
304+
<gpgArguments>
305+
<arg>--pinentry-mode</arg>
306+
<arg>loopback</arg>
307+
</gpgArguments>
308+
</configuration>
309+
</execution>
310+
</executions>
311+
</plugin>
312+
</plugins>
313+
</build>
314+
</profile>
250315
</profiles>
251316

252317
<dependencies>

0 commit comments

Comments
 (0)