java-在Spring Boot可执行jar中包含Hortonworks存储库
作者:互联网
我在Spring Boot应用程序中使用Hortonworks存储库中的shc-core依赖项,该存储库在pom.xml文件中声明如下:
<repositories>
<repository>
<id>repository.hortonworks</id>
<name>Hortonworks Repository</name>
<url>http://repo.hortonworks.com/content/repositories/releases/</url>
</repository>
</repositories>
我从此存储库添加的依赖项是:
<dependency>
<groupId>com.hortonworks</groupId>
<artifactId>shc-core</artifactId>
<version>1.1.1-2.1-s_2.11</version>
</dependency>
我正在使用spring-boot-maven-plugin构建可执行的jar文件.但是当我mvn clean install或mvn clean install spring-boot:repackage时,它没有将shc-core jar打包在Spring Boot可执行jar文件中.
我已经尝试使用< includeSystemScope> true< / includeSystemScope>启用配置.但这也不起作用.
有人可以告诉我我在做什么错吗?
解决方法:
尝试添加pom.xml
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>fully.qualified.MainClass</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
和
跑::
mvn clean编译安装程序集:单个
标签:apache-spark,spring-boot,maven,hbase,java 来源: https://codeday.me/bug/20191211/2106704.html