Skip to content

Commit 15525ee

Browse files
authored
Merge pull request #110333 from jdubois/patch-2
Detail which version of JIB to use
2 parents 95d12ab + d85cab1 commit 15525ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/container-registry/container-registry-java-quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,13 @@ Finally, you'll update your project configuration and use the command prompt to
103103

104104
1. Navigate to the completed project directory for your Spring Boot application (for example, "*C:\SpringBoot\gs-spring-boot-docker\complete*" or "*/users/robert/SpringBoot/gs-spring-boot-docker/complete*"), and open the *pom.xml* file with a text editor.
105105

106-
1. Update the `<properties>` collection in the *pom.xml* file with the following XML. Replace the placeholder with your registry name, and update the `<jib-maven-plugin.version>` value with the latest version of the [jib-maven-plugin](https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin).
106+
1. Update the `<properties>` collection in the *pom.xml* file with the following XML. Replace the placeholder with your registry name, and add a `<jib-maven-plugin.version>` property with value `2.1.0`, or a newer version of the [jib-maven-plugin](https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin).
107107

108108
```xml
109109
<properties>
110110
<docker.image.prefix><your registry name>.azurecr.io</docker.image.prefix>
111-
<jib-maven-plugin.version>1.8.0</jib-maven-plugin.version>
112111
<java.version>1.8</java.version>
112+
<jib-maven-plugin.version>2.1.0</jib-maven-plugin.version>
113113
</properties>
114114
```
115115

0 commit comments

Comments
 (0)