gpt4 book ai didi

java - 在 Maven 程序集中包含依赖项而不包含实际 Artifact

转载 作者:搜寻专家 更新时间:2023-11-01 03:42:25 25 4
gpt4 key购买 nike

我想创建一个 Maven 程序集,其中包含 Artifact 的传递依赖项,而不实际包含 Artifact 本身。我已尝试从程序集中排除 Artifact ,但结果未包括其依赖项。

ArtifactA 有 DependencyA, DependencyB

程序集应包含 DependencyA、DependencyB(无 ArtifactA)

而且我更愿意这样做而不必明确指定要包含在程序集中的依赖项,因为这将通过具有许多依赖项的多个项目来完成。

谢谢!

最佳答案

我终于让它工作了。这将产生一个仅包含 depende 的依赖项的 Artifact

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<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>moduletest</groupId>
<artifactId>moduletest</artifactId>
<version>1.0</version>
<packaging>pom</packaging>

<dependencies>
<dependency>
<groupId>dependency</groupId>
<artifactId>dependency</artifactId>
<version>1.0</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.3</version>
<configuration>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</plugins>
</build>

</project>

程序集.xml

<?xml version="1.0" encoding="UTF-8"?>
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">

<id>module</id>

<includeBaseDirectory>false</includeBaseDirectory>

<formats>
<format>zip</format>
</formats>

<dependencySets>
<dependencySet>
<excludes>
<exclude>dependency:dependency</exclude>
</excludes>
<useProjectArtifact>false</useProjectArtifact>
<useTransitiveDependencies>true</useTransitiveDependencies>
</dependencySet>
</dependencySets>

</assembly>

关于java - 在 Maven 程序集中包含依赖项而不包含实际 Artifact ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11229842/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com