我正在使用旧版Spring应用程序,并且想要迁移到Spring Boot。我的意图是使用spring-boot-starter-data-jpa
。因此,我在pom.xml
(管理所有spring-boot-dependencies
)中添加了以下部分:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.3.RELEASE</version>
</parent>
但是这搞砸了我需要暂时保留的某些依赖项。我目前正在使用Selenium依赖项(版本2.53.0
;从另一个项目中过渡添加),但是spring-boot正在获取3.9.1
的依赖项。
我想排除3.9.1
依赖性,但是exclusion
过滤器无法正常工作。
总结一下,我想使用spring-boot-starter-parent
和spring-boot-starter-data-jpa
,而不要使用selenium-java
中的托管spring-boot-dependencies
。
感谢这方面的帮助。
答案 0 :(得分:7)
与其弄乱<excludes>
,然后尝试弄清楚需要再次包含的内容(找出要排除的内容之后),而不是弄乱。只需按照说明here in the Spring Boot Reference Guide覆盖版本即可。
假设您使用spring-boot-starter-parent
作为父级,则只需将<selenium.version>
添加到<properties>
部分中即可指定所需的版本。
<properties>
<selenium.version>2.53.0</selenium.version>
</properties>
这将使Spring Boot使用所需的版本。
答案 1 :(得分:0)
在pom.xml中提及您的依赖性,您需要在排除标记中排除它。然后排除的依赖项将不会下载:
<dependency>
<groupId>sample.ProjectA</groupId>
<artifactId>Project-A</artifactId>
<version>1.0</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<!-- declare the exclusion here -->
<groupId>sample.ProjectB</groupId>
<artifactId>Project-B</artifactId>
</exclusion>
</exclusions>
</dependency>
答案 2 :(得分:-1)
从入门pom删除依赖关系。在pom.xml中使用exclsuions标记。例如,删除执行器依赖项
<?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>com.example</groupId>
<artifactId>demo-1</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>demo-1</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.3.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>