/
githubmirror
/
ydb-java-yc
Обзор
Документация
Войти
/
githubmirror
/
ydb-java-yc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
provider-shaded/pom.xml
110 строк
4 KB
Alexandr Gorshenin
Next release version v2.3.1
19 фев 2026, 11:00
Не верифицирован
19 фев 2026, 11:00
229c8bc
Код
Авторство
О чём код?
<?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> <parent> <groupId>tech.ydb.auth</groupId> <artifactId>yc-auth-provider-parent</artifactId> <version>2.3.1</version> </parent> <artifactId>yc-auth-provider-shaded</artifactId> <name>Yandex Cloud IAM Shaded Provider</name> <description>Yandex Cloud IAM Authentication Provider shaded module</description> <dependencies> <dependency> <groupId>tech.ydb.auth</groupId> <artifactId>yc-auth-provider</artifactId> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-netty</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-netty-shaded</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <forceCreation>true</forceCreation> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <includeDependencySources>true</includeDependencySources> <dependencySourceIncludes> <dependencySourceInclude>tech.ydb.auth:yc-auth-provider</dependencySourceInclude> </dependencySourceIncludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.6.1</version> <configuration> <minimizeJar>true</minimizeJar> <createSourcesJar>true</createSourcesJar> <promoteTransitiveDependencies>true</promoteTransitiveDependencies> <createDependencyReducedPom>true</createDependencyReducedPom> <dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation> <artifactSet> <includes> <include>tech.ydb.auth:yc-auth-provider</include> </includes> </artifactSet> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/**/pom.xml</exclude> <exclude>META-INF/**/pom.properties</exclude> <exclude>META-INF/MANIFEST.MF</exclude> </excludes> </filter> <filter> <artifact>tech.ydb.auth:yc-auth-provider</artifact> <includes> <include>**</include> </includes> </filter> </filters> <relocations> <relocation> <rawString>true</rawString> <pattern>yandex/cloud</pattern> <shadedPattern>tech/ydb/auth/shaded/yandex/cloud</shadedPattern> </relocation> </relocations> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>