在Maven中,你可以使用<exclusions>
標簽來排除依賴的某個類。下面是如何在Maven中排除某個類的步驟:
<dependencies>
標簽中找到你要排除的依賴項,并添加<exclusions>
標簽。例如:<dependencies>
<dependency>
<groupId>com.example</groupId>
<artifactId>example-library</artifactId>
<version>1.0.0</version>
<exclusions>
<exclusion>
<groupId>com.example</groupId>
<artifactId>example-library</artifactId>
<artifactId>SomeClassToExclude</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<exclusion>
標簽中指定要排除的類的groupId
、artifactId
和artifactId
,使Maven不會將該類包含在構建中。通過這種方式,你可以排除Maven引入的特定類,以滿足你的需求。