0

以下当前将我的依赖项放入新创建的 lib 目录中。

<dependencySets>
    <dependencySet>
        <outputDirectory>lib</outputDirectory>
        <scope>runtime</scope>
    </dependencySet>
</dependencySets>

问题:如何更改它以排除 1 个文件?

以下不起作用:

<dependencySets>
    <dependencySet>
        <outputDirectory>lib</outputDirectory>
        <scope>runtime</scope>
        <excludes>
            <exclude>my_program-0.0.1-SNAPSHOT.jar</exclude>
        </excludes>
    </dependencySet>
</dependencySets>
4

1 回答 1

1

尝试使用约定:

<exclude>groupId:artifactId</exclude>

因此,如果您有例如:

        <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-jdbc</artifactId>
        <version>3.0.5.RELEASE</version>
    </dependency>

要排除它:

<exclude>org.springframework:spring-jdbc</exclude>
于 2012-04-26T13:25:12.713 回答