When using the docker-maven-plugin plug-in, Maven cannot pull the corresponding jar package. The following problems occur: Maven version: Mirror repository configuration: <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> Modify the docker-maven-plugin plugin version to: 0.4.13 and it will work normally <build> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>docker-maven-plugin</artifactId> <version>0.4.13</version> <configuration> <imageName>itmuch/microservice-discovery-eureka:0.0.1</imageName> <cmd>["java", "-version"]</cmd> <entryPoint>["java", "-jar", "${project.build.finalName}.jar"]</entryPoint> <!-- Here is the configuration for copying the jar package to the specified directory of the docker container--> <resources> <resource> <targetPath>/</targetPath> <directory>${project.build.directory}</directory> <include>${project.build.finalName}.jar</include> </resource> </resources> </configuration> </plugin> </plugins> </build> This is the end of this article about the docker-maven-plugin plugin cannot pull the corresponding jar package. For more related content about the docker maven plugin plugin cannot pull, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: What are the differences between xHTML and HTML tags?
>>: 6 inheritance methods of JS advanced ES6
This article shares the installation and configur...
Table of contents Install and introduce axios dep...
Block-level element features : •Always occupies a ...
This article example shares the specific code of ...
In this experiment, we configure MySQL standard a...
Method 1: float:right In addition, floating will ...
Table of contents 1. About JavaScript 2. JavaScri...
1. Introduction When the amount of data in the da...
1 Requirements Overview The data of multiple tabl...
Vue plugin reports an error: Vue.js is detected o...
Table of contents Preface Instruction Basics Hook...
I logged into the backend to check the solution t...
function 0. Display current time Command: select ...
Table of contents Preface webpack-deb-server webp...
{ {}} Get the value, the original content of the ...