/
githubmirror
/
ydb-java-yc
Обзор
Документация
Войти
/
githubmirror
/
ydb-java-yc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v2.0.0
pom.xml
174 строки
6 KB
Alexandr Gorshenin
Added ossrh profile
06 окт 2022, 11:48
06 окт 2022, 11:48
36e7b6e
Код
Авторство
О чём код?
<?xml version="1.0"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>tech.ydb.auth</groupId> <artifactId>yc-auth-provider</artifactId> <version>2.0.0</version> <name>Yandex Cloud IAM authentication module</name> <description>Yandex Cloud IAM authentication module</description> <url>https://github.com/ydb-platform/ydb-java-yc</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <yandex.cloud.sdk.version>2.5.1</yandex.cloud.sdk.version> <junit.version>4.13.2</junit.version> <log4j2.version>2.18.0</log4j2.version> <mockserver.version>5.13.2</mockserver.version> </properties> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <scm> <url>https://github.com/ydb-platform/ydb-java-yc</url> <connection>scm:git:https://github.com/ydb-platform/ydb-java-yc.git</connection> <developerConnection>scm:git:https://github.com/ydb-platform/ydb-java-yc.git</developerConnection> </scm> <developers> <developer> <name>Aleksandr Gorshenin</name> <email>alexandr268@ydb.tech</email> <organization>YDB</organization> <organizationUrl>https://ydb.tech/</organizationUrl> </developer> </developers> <dependencies> <dependency> <groupId>tech.ydb</groupId> <artifactId>ydb-sdk-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <!-- Sync with grpc-java version --> <groupId>com.yandex.cloud</groupId> <artifactId>java-sdk-auth</artifactId> <version>${yandex.cloud.sdk.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <version>${log4j2.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mock-server</groupId> <artifactId>mockserver-junit-rule</artifactId> <version>${mockserver.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mock-server</groupId> <artifactId>mockserver-netty</artifactId> <version>${mockserver.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.0</version> <configuration> <target>1.8</target> <source>1.8</source> <compilerArgs> <arg>-Xlint</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M7</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.0</version> <configuration> <source>8</source> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>ossrh-s01</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh-s01</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>