在配置文件中覆盖Maven依赖项范围

时间:2018-07-02 12:03:42

标签: java maven spring-boot h2 dependency-management

我有一个基于maven的spring-boot应用程序。

我只想将h2数据库作为测试的依赖项,所以我具有以下要求:

<dependency>
      <groupId>com.h2database</groupId>
      <artifactId>h2</artifactId>
      <scope>test</scope>
</dependency>

然后我需要一个Maven配置文件进行开发,需要将h2作为编译或运行时依赖项:

    <profile>
      <id>emb</id>
      <activation>
        <activeByDefault>false</activeByDefault>
      </activation>
      <dependencies>
        <!-- Using embedded database in development -->
        <dependency>
          <groupId>com.h2database</groupId>
          <artifactId>h2</artifactId>
          <scope>compile</scope>
        </dependency>
      </dependencies>
    </profile>

但由于仅使用测试范围,它在“无法加载驱动程序类:org.h2.Driver”上仍然失败。

当我从依赖项中删除测试范围规范时,它可以工作,但这不是我想要的,因为我不想在生产中使用。

是否有可能基于配置文件重写依赖关系范围?

2 个答案:

答案 0 :(得分:3)

个人资料标签可以位于您的pom中的任何级别,只需设置2组属性即可。

<?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.greg</groupId>
    <artifactId>profile-boot-example</artifactId>
    <version>0.1.0</version>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.10.RELEASE</version>
    </parent>

    <profiles>
        <profile>
            <id>prod</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <properties>
                <h2.scope>test</h2.scope>
            </properties>
        </profile>
        <profile>
            <id>emb</id>
            <activation>
                <activeByDefault>false</activeByDefault>
            </activation>
            <properties>
                <h2.scope>compile</h2.scope>
            </properties>
        </profile>
    </profiles>

    <dependencies>
        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
            <scope>${h2.scope}</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <properties>
        <java.version>1.8</java.version>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <artifactId>maven-failsafe-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>integration-test</goal>
                            <goal>verify</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

</project>

答案 1 :(得分:2)

最后,我发现依赖关系范围覆盖正常工作。

足以使用选定的配置文件运行Maven构建,如下所示:

mvn clean install -P emb

您还可以使用以下方法检查依赖关系范围:

mvn -P emb dependency:analyze

问题与运行 spring-boot 应用程序有关:

当我使用eclipse / idea或

mvn spring-boot:run

由于缺少h2驱动程序而导致失败-可能是因为运行了另一个没有正确配置文件的构建。

解决方案是在使用简单的Java构建Maven之后运行spring-boot应用程序:

java -jar target/your-app.jar --spring.profiles.active=emb

(在这种情况下,spring配置文件是另一个故事-仅提供完整信息)