我试过这样配置它,但会出现异常
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<skip></skip>
<executable>true</executable>
<embeddedLaunchScriptProperties>
<property>
<name>inlinedConfScript</name>
<value>/app/knowledge-base.conf</value>
</property>
</embeddedLaunchScriptProperties>
</configuration>
</plugin>
</plugins>
</build>
未能执行目标org.springframework.boot:spring-boot maven插件:2.1.7。RELEASE:在项目知识库上重新打包(重新打包(:\app\knowledge-base.conf
<property>
<name>inlinedConfScript</name>
<value>${basedir}/app/knowledge-base.conf</value>
</property>
${basedir}项目的根目录。