The docker-maven-plugin plugin cannot pull the corresponding jar package

The docker-maven-plugin plugin cannot pull the corresponding jar package

When using the docker-maven-plugin plug-in, Maven cannot pull the corresponding jar package. The following problems occur:

insert image description here

Maven version:

insert image description here

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:
  • Summary of the dockerfile-maven-plugin usage guide
  • Detailed usage of docker-maven-plugin
  • Use of Maven plugin docker-maven-plugin
  • dockerfile-maven-plugin minimalist tutorial (recommended)
  • Teach you how to use docker-maven-plugin to automate deployment

<<:  What are the differences between xHTML and HTML tags?

>>:  6 inheritance methods of JS advanced ES6

Recommend

Detailed analysis of when tomcat writes back the response datagram

The question arises This question arose when I wa...

Use Xshell to connect to the Linux virtual machine on VMware (graphic steps)

Preface: I recently started to study the construc...

Implementation of Vue3 style CSS variable injection

Table of contents summary Basic Example motivatio...

MySQL log system detailed information sharing

Anyone who has worked on a large system knows tha...

Linux uses NetworkManager to randomly generate your MAC address

Nowadays, whether you are on the sofa at home or ...

Enabling and configuring MySQL slow query log

Introduction MySQL slow query log is an important...

Detailed explanation of CSS sticky positioning position: sticky problem pit

Preface: position:sticky is a new attribute of CS...

The most common declaration merge in TS (interface merge)

Table of contents 1. Merge interface 1.1 Non-func...

js to achieve the effect of light switch

This article example shares the specific code of ...

MySQL trigger trigger add, delete, modify and query operation example

This article uses examples to describe the add, d...