springboot项目不适用parent依赖,导致maven依赖无效

springboot项目的构建一般存在如下依赖:

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

 

如果删除这个依赖,会出现如下图问题:

 

解决办法,引入maven依赖:

<dependencyManagement>
<dependencies>
<dependency>
<!-- Import dependency management from Spring Boot -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>1.5.6.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

j经测试,打包的话,不能运行,不能使用java -jar demo.jar运行,会报错没有主清单。

必须添加如下插件

<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<mainClass>com.transferservice.TransferServiceApplication</mainClass>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>

 

经测试,打包之后,使用命令java -jar demo.jar项目可以正常启动。







posted @ 2018-04-10 20:43  me-ht  阅读(10068)  评论(0编辑  收藏  举报