如何在Maven文件中指定配置文件中的非常小的差异?我不想为每个不同的配置文件复制几乎相同的依赖项系列。
在生产环境中,可以使用类似'openshift'的配置文件。这样SpringBoot应用程序在Openshift Redhat环境中运行良好。对于本地开发,我需要稍微不同的依赖项。
例如:依赖项中只有2个区别用注释标记。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<-- **** Part 1: next lines only in PROFILE 'openshift' -->
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
<-- till here -->
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<-- ***** Part 2: next lines only in PROFILE 'openshift' -->
<scope>provided</scope>
<-- till here -->
</dependency>
有没有办法只标记此行不同的个人资料?
问题2:我应该使用默认配置文件还是仅标记特定配置文件的行?
答案 0 :(得分:0)
我的目标是为环境制作一些特定的依赖项。大多数依赖项应该只在maven文件中一次。
是的,这是可能的。
您可以将Maven中的大部分内容指定为与配置文件无关。和一小部分轮廓依赖(对于一种情况)。下面的maven文件证明了这一点。
如果你使用-P non_openshift运行,回声是:(1)**** OUTSIDE PROFILE *****和(2)**** PROFILE non_openshift ****。
如果你使用-P openshift运行,那么echo是:(1)**** OUTSIDE PROFILE *****和(2)**** PROFILE openshift ****。
这是maven文件。我使用了2种类型的回声&#39; -plugins,因此它们不会相互干扰。
<?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>nl.deholtmans</groupId>
<artifactId>maven_profile_test</artifactId>
<version>1.0-SNAPSHOT</version>
<profiles>
<profile>
<id>not_openshift</id>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<echo>*** Profile: NOT openshift *** </echo>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>openshift</id>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<echo>*** Profile: openshift *** </echo>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>com.soebes.maven.plugins</groupId>
<artifactId>echo-maven-plugin</artifactId>
<version>0.3.0</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>echo</goal>
</goals>
</execution>
</executions>
<configuration>
<echos>
<echo>**** OUTSIDE PROFILE ***** </echo>
</echos>
</configuration>
</plugin>
</plugins>
</build>
</project>