/
githubmirror
/
icu
Обзор
Документация
Войти
/
githubmirror
/
icu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tools/release/java/pom.xml
82 строки
3 KB
Mihai Nita
ICU-23270 ICU4J Maven improvements
15 дек 2025, 20:37
15 дек 2025, 20:37
74dd9a7
Код
Авторство
О чём код?
<?xml version="1.0" encoding="UTF-8"?> <!-- * © 2016 and later: Unicode, Inc. and others. * License & terms of use: http://www.unicode.org/copyright.html ******************************************************************************* * Copyright (C) 2010-2016, International Business Machines Corporation and * * others. All Rights Reserved. * ******************************************************************************* --> <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>com.ibm.icu</groupId> <artifactId>icu-root</artifactId> <version>79.0.1-SNAPSHOT</version> <relativePath>../../../pom.xml</relativePath> </parent> <artifactId>icu4c-apireport</artifactId> <name>icu4c-apireport</name> <properties> <module-name>icu4c_apireport</module-name> </properties> <dependencies> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>${xml-apis.version}</version> </dependency> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>${xerces.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>xalan</groupId> <artifactId>serializer</artifactId> <version>${xalan.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>xalan</groupId> <artifactId>xalan</artifactId> <version>${xalan.version}</version> <scope>runtime</scope> </dependency> </dependencies> <build> <plugins> <plugin> <!-- we use the shade plugin to generate a self-contained icu4c-apireport.jar --> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <finalName>${project.name}</finalName> <!-- drop the 'with dependencies' from .jar name --> <shadedArtifactAttached>true</shadedArtifactAttached> <shadedClassifierName>jar-with-dependencies</shadedClassifierName> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <mainClass>com.ibm.icu.dev.tools.docs.StableAPI</mainClass> </transformer> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>