Skip to content

Commit 45b95af

Browse files
authored
chore: update docs for jib-maven-plugin v3.4.6 release (#4394)
1 parent fb6a9a1 commit 45b95af

File tree

7 files changed

+13
-9
lines changed

7 files changed

+13
-9
lines changed

examples/dropwizard/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<dropwizard-template-config.version>1.5.0</dropwizard-template-config.version>
2727

2828
<jib.container.appRoot>/app</jib.container.appRoot>
29-
<jib-maven-plugin.version>3.4.5</jib-maven-plugin.version>
29+
<jib-maven-plugin.version>3.4.6</jib-maven-plugin.version>
3030
</properties>
3131

3232
<dependencyManagement>

examples/helloworld/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12-
<jib-maven-plugin.version>3.4.5</jib-maven-plugin.version>
12+
<jib-maven-plugin.version>3.4.6</jib-maven-plugin.version>
1313
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
1414
</properties>
1515

examples/java-agent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12-
<jib-maven-plugin.version>3.4.5</jib-maven-plugin.version>
12+
<jib-maven-plugin.version>3.4.6</jib-maven-plugin.version>
1313
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
1414
<download-maven-plugin.version>1.4.2</download-maven-plugin.version>
1515
<git-commit-id-plugin.version>3.0.1</git-commit-id-plugin.version>

examples/multi-module/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<plugin>
4242
<groupId>com.google.cloud.tools</groupId>
4343
<artifactId>jib-maven-plugin</artifactId>
44-
<version>3.4.5</version>
44+
<version>3.4.6</version>
4545
</plugin>
4646
</plugins>
4747
</pluginManagement>

examples/spring-boot/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<plugin>
3030
<groupId>com.google.cloud.tools</groupId>
3131
<artifactId>jib-maven-plugin</artifactId>
32-
<version>3.4.5</version>
32+
<version>3.4.6</version>
3333
</plugin>
3434
</plugins>
3535
</build>

jib-maven-plugin/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,14 @@ All notable changes to this project will be documented in this file.
66
### Added
77

88
### Changed
9-
- Update retrieval of Maven properties to use the following order: user, project, system [#4344](https://github.com/GoogleContainerTools/jib/issues/4344)
109

1110
### Fixed
1211

12+
## 3.4.6
13+
14+
### Changed
15+
- Update retrieval of Maven properties to use the following order: user, project, system [#4344](https://github.com/GoogleContainerTools/jib/issues/4344)
16+
1317
## 3.4.5
1418

1519
### Fixed

jib-maven-plugin/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ For information about the project, see the [Jib project README](../README.md).
4848
You can containerize your application easily with one command:
4949

5050
```shell
51-
mvn compile com.google.cloud.tools:jib-maven-plugin:3.4.5:build -Dimage=<MY IMAGE>
51+
mvn compile com.google.cloud.tools:jib-maven-plugin:3.4.6:build -Dimage=<MY IMAGE>
5252
```
5353

5454
This builds and pushes a container image for your application to a container registry. *If you encounter authentication issues, see [Authentication Methods](#authentication-methods).*
5555

5656
To build to a Docker daemon, use:
5757

5858
```shell
59-
mvn compile com.google.cloud.tools:jib-maven-plugin:3.4.5:dockerBuild
59+
mvn compile com.google.cloud.tools:jib-maven-plugin:3.4.6:dockerBuild
6060
```
6161

6262
If you would like to set up Jib as part of your Maven build, follow the guide below.
@@ -74,7 +74,7 @@ In your Maven Java project, add the plugin to your `pom.xml`:
7474
<plugin>
7575
<groupId>com.google.cloud.tools</groupId>
7676
<artifactId>jib-maven-plugin</artifactId>
77-
<version>3.4.5</version>
77+
<version>3.4.6</version>
7878
<configuration>
7979
<to>
8080
<image>myimage</image>

0 commit comments

Comments
 (0)