Skip to content

Commit ed7c898

Browse files
authored
build: fix bom pom (#59)
1 parent f32d985 commit ed7c898

File tree

1 file changed

+112
-0
lines changed

1 file changed

+112
-0
lines changed

tarantool-java-sdk-bom/pom.xml

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,59 @@
238238
</dependencies>
239239
</dependencyManagement>
240240

241+
<licenses>
242+
<license>
243+
<name>VK DIGITAL TECHNOLOGIES LIMITED LIABILITY COMPANY</name>
244+
<url>LICENSE.md</url>
245+
<distribution>repo</distribution>
246+
</license>
247+
</licenses>
248+
249+
<developers>
250+
<developer>
251+
<id>bitgorbovsky</id>
252+
<name>Ivan Bannikov</name>
253+
<email>Bit.Gorbovsky@gmail.com</email>
254+
<organization>Tarantool</organization>
255+
<organizationUrl>https://tarantool.io/</organizationUrl>
256+
</developer>
257+
<developer>
258+
<id>ArtDub</id>
259+
<name>Artyom Dubinin</name>
260+
<email>rusartdub@gmail.com</email>
261+
<organization>Tarantool</organization>
262+
<organizationUrl>https://tarantool.io/</organizationUrl>
263+
</developer>
264+
<developer>
265+
<id>nickkkccc</id>
266+
<name>Nikolay Belonogov</name>
267+
<email>nickolaybeliy15@gmail.com</email>
268+
<organization>Tarantool</organization>
269+
<organizationUrl>https://tarantool.io/</organizationUrl>
270+
</developer>
271+
<developer>
272+
<id>dkasimovskiy</id>
273+
<name>Dmitry Kasimovskiy</name>
274+
<email>dmitry.kasimovsky@yandex.ru</email>
275+
<organization>Tarantool</organization>
276+
<organizationUrl>https://tarantool.io/</organizationUrl>
277+
</developer>
278+
<developer>
279+
<id>alex-pvl</id>
280+
<name>Aleksandr Pavlyuk</name>
281+
<email>s_pavlyuk1@icloud.com</email>
282+
<organization>Tarantool</organization>
283+
<organizationUrl>https://tarantool.io/</organizationUrl>
284+
</developer>
285+
</developers>
286+
287+
<scm>
288+
<connection>scm:git:https://github.com/tarantool/tarantool-java-sdk.git</connection>
289+
<developerConnection>scm:git:https://github.com/tarantool/tarantool-java-sdk.git</developerConnection>
290+
<url>scm:git:https://github.com/tarantool/tarantool-java-sdk.git</url>
291+
<tag>HEAD</tag>
292+
</scm>
293+
241294
<build>
242295
<plugins>
243296
<plugin>
@@ -250,4 +303,63 @@
250303
</plugin>
251304
</plugins>
252305
</build>
306+
307+
<profiles>
308+
<profile>
309+
<id>sonatypeSnapshot</id>
310+
<build>
311+
<plugins>
312+
<plugin>
313+
<groupId>org.sonatype.central</groupId>
314+
<artifactId>central-publishing-maven-plugin</artifactId>
315+
<version>0.9.0</version>
316+
<extensions>true</extensions>
317+
<configuration>
318+
<publishingServerId>central-portal-snapshots</publishingServerId>
319+
<deploymentName>io.tarantool.tarantool-java-sdk</deploymentName>
320+
<waitUntil>uploaded</waitUntil>
321+
</configuration>
322+
</plugin>
323+
</plugins>
324+
</build>
325+
</profile>
326+
<profile>
327+
<id>sonatypeRelease</id>
328+
<build>
329+
<plugins>
330+
<plugin>
331+
<groupId>org.sonatype.central</groupId>
332+
<artifactId>central-publishing-maven-plugin</artifactId>
333+
<version>0.9.0</version>
334+
<extensions>true</extensions>
335+
<configuration>
336+
<publishingServerId>central</publishingServerId>
337+
<deploymentName>io.tarantool.tarantool-java-sdk</deploymentName>
338+
<waitUntil>uploaded</waitUntil>
339+
</configuration>
340+
</plugin>
341+
<plugin>
342+
<groupId>org.apache.maven.plugins</groupId>
343+
<artifactId>maven-gpg-plugin</artifactId>
344+
<version>3.2.8</version>
345+
<executions>
346+
<execution>
347+
<id>sign-artifacts</id>
348+
<phase>verify</phase>
349+
<goals>
350+
<goal>sign</goal>
351+
</goals>
352+
<configuration>
353+
<gpgArguments>
354+
<arg>--pinentry-mode</arg>
355+
<arg>loopback</arg>
356+
</gpgArguments>
357+
</configuration>
358+
</execution>
359+
</executions>
360+
</plugin>
361+
</plugins>
362+
</build>
363+
</profile>
364+
</profiles>
253365
</project>

0 commit comments

Comments
 (0)