/
githubmirror
/
ydb-java-yc
Обзор
Документация
Войти
/
githubmirror
/
ydb-java-yc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v2.3.0
pom.xml
278 строк
10 KB
Alexandr Gorshenin
Added annotation-api dependency
13 авг 2025, 19:57
Не верифицирован
13 авг 2025, 19:57
fe7da01
Код
Авторство
О чём код?
<?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-parent</artifactId> <version>2.3.0</version> <packaging>pom</packaging> <name>Yandex Cloud IAM for YDB</name> <description>Yandex Cloud IAM for YDB parent module</description> <url>https://github.com/ydb-platform/ydb-java-yc</url> <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> <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> <ydb.auth-api.version>1.0.0</ydb.auth-api.version> <grpc.version>1.68.3</grpc.version> <!-- must be equal version in grpc-protobuf pom.xml --> <google.protobuf.version>3.25.5</google.protobuf.version> <javax.annotation-api.version>1.3.2</javax.annotation-api.version> <jjwt.version>0.12.6</jjwt.version> <bouncycastle.version>1.78.1</bouncycastle.version> <junit.version>4.13.2</junit.version> <log4j2.version>2.22.1</log4j2.version> <mockserver.version>5.11.2</mockserver.version> </properties> <modules> <module>provider</module> <module>provider-shaded</module> </modules> <dependencyManagement> <dependencies> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-bom</artifactId> <version>${grpc.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> <version>${javax.annotation-api.version}</version> </dependency> <dependency> <groupId>tech.ydb</groupId> <artifactId>ydb-auth-api</artifactId> <version>${ydb.auth-api.version}</version> </dependency> <dependency> <groupId>com.yandex.cloud</groupId> <artifactId>java-genproto</artifactId> <version>${yandex.cloud.sdk.version}</version> <exclusions> <exclusion> <groupId>io.grpc</groupId> <artifactId>grpc-services</artifactId> </exclusion> </exclusions> </dependency> <!-- BouncyCastle --> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk18on</artifactId> <version>${bouncycastle.version}</version> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk18on</artifactId> <version>${bouncycastle.version}</version> </dependency> <!-- JJwt --> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt-impl</artifactId> <version>${jjwt.version}</version> </dependency> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt-jackson</artifactId> <version>${jjwt.version}</version> </dependency> <dependency> <groupId>tech.ydb.auth</groupId> <artifactId>yc-auth-provider</artifactId> <version>${project.version}</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <version>${log4j2.version}</version> </dependency> <dependency> <groupId>org.mock-server</groupId> <artifactId>mockserver-junit-rule</artifactId> <version>${mockserver.version}</version> </dependency> <dependency> <groupId>org.mock-server</groupId> <artifactId>mockserver-netty</artifactId> <version>${mockserver.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.8.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> <configuration> <target>1.8</target> <source>1.8</source> <compilerArgs> <arg>-Xlint</arg> <!-- Silence warning "No processor claimed any of these annotations". One of the annotations that would trigger it is org.junit.jupiter.api.Test --> <arg>-Xlint:-processing</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.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.5.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</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>jdk8-bootstrap</id> <activation> <jdk>[9</jdk> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <release>8</release> </configuration> </plugin> </plugins> </build> </profile> <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>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>ossrh-s01</publishingServerId> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>