diff --git a/examples/dropwizard/pom.xml b/examples/dropwizard/pom.xml
index 9c4b4821e7..5a75180165 100644
--- a/examples/dropwizard/pom.xml
+++ b/examples/dropwizard/pom.xml
@@ -26,7 +26,7 @@
1.5.0
/app
- 3.5.0
+ 3.5.1
diff --git a/examples/helloworld/build.gradle b/examples/helloworld/build.gradle
index 9378841634..2ff9785662 100644
--- a/examples/helloworld/build.gradle
+++ b/examples/helloworld/build.gradle
@@ -1,6 +1,6 @@
plugins {
id 'java'
- id 'com.google.cloud.tools.jib' version '3.5.0'
+ id 'com.google.cloud.tools.jib' version '3.5.1'
}
sourceCompatibility = 1.8
diff --git a/examples/helloworld/pom.xml b/examples/helloworld/pom.xml
index 097d6b795a..bbc3b73863 100644
--- a/examples/helloworld/pom.xml
+++ b/examples/helloworld/pom.xml
@@ -9,7 +9,7 @@
UTF-8
- 3.5.0
+ 3.5.1
3.8.0
diff --git a/examples/java-agent/build.gradle b/examples/java-agent/build.gradle
index 68a132fcf7..03a43d991d 100644
--- a/examples/java-agent/build.gradle
+++ b/examples/java-agent/build.gradle
@@ -1,6 +1,6 @@
plugins {
id 'java'
- id 'com.google.cloud.tools.jib' version '3.5.0'
+ id 'com.google.cloud.tools.jib' version '3.5.1'
id 'de.undercouch.download' version '4.0.0'
id 'com.gorylenko.gradle-git-properties' version '2.2.0'
}
diff --git a/examples/java-agent/pom.xml b/examples/java-agent/pom.xml
index b62f55ce02..b8c16787e5 100644
--- a/examples/java-agent/pom.xml
+++ b/examples/java-agent/pom.xml
@@ -9,7 +9,7 @@
UTF-8
- 3.5.0
+ 3.5.1
3.8.0
1.4.2
3.0.1
diff --git a/examples/ktor/build.gradle.kts b/examples/ktor/build.gradle.kts
index c4f3752436..57b63e3f5a 100644
--- a/examples/ktor/build.gradle.kts
+++ b/examples/ktor/build.gradle.kts
@@ -1,7 +1,7 @@
plugins {
application
kotlin("jvm") version "1.3.10"
- id("com.google.cloud.tools.jib") version "3.5.0"
+ id("com.google.cloud.tools.jib") version "3.5.1"
}
group = "example"
diff --git a/examples/micronaut/build.gradle b/examples/micronaut/build.gradle
index d096cf7733..b4d296184b 100644
--- a/examples/micronaut/build.gradle
+++ b/examples/micronaut/build.gradle
@@ -2,7 +2,7 @@ plugins {
id "groovy"
id "com.github.johnrengelman.shadow" version "5.2.0"
id "application"
- id 'com.google.cloud.tools.jib' version '3.5.0'
+ id 'com.google.cloud.tools.jib' version '3.5.1'
}
version "0.1"
diff --git a/examples/multi-module/build.gradle b/examples/multi-module/build.gradle
index 8235c51553..2f9b139ce7 100644
--- a/examples/multi-module/build.gradle
+++ b/examples/multi-module/build.gradle
@@ -2,5 +2,5 @@
plugins {
id 'org.springframework.boot' version '2.0.3.RELEASE' apply false
id 'io.spring.dependency-management' version '1.0.6.RELEASE' apply false
- id 'com.google.cloud.tools.jib' version '3.5.0' apply false
+ id 'com.google.cloud.tools.jib' version '3.5.1' apply false
}
diff --git a/examples/multi-module/pom.xml b/examples/multi-module/pom.xml
index ff1123aee0..a8e1fc825a 100644
--- a/examples/multi-module/pom.xml
+++ b/examples/multi-module/pom.xml
@@ -41,7 +41,7 @@
com.google.cloud.tools
jib-maven-plugin
- 3.5.0
+ 3.5.1
diff --git a/examples/spring-boot/build.gradle b/examples/spring-boot/build.gradle
index 6aed932d14..574884679e 100644
--- a/examples/spring-boot/build.gradle
+++ b/examples/spring-boot/build.gradle
@@ -4,7 +4,7 @@ plugins {
id 'idea'
id 'org.springframework.boot' version '2.1.6.RELEASE'
id 'io.spring.dependency-management' version '1.0.6.RELEASE'
- id 'com.google.cloud.tools.jib' version '3.5.0'
+ id 'com.google.cloud.tools.jib' version '3.5.1'
}
repositories {
diff --git a/examples/spring-boot/pom.xml b/examples/spring-boot/pom.xml
index 0021c0d272..2e7afef289 100644
--- a/examples/spring-boot/pom.xml
+++ b/examples/spring-boot/pom.xml
@@ -29,7 +29,7 @@
com.google.cloud.tools
jib-maven-plugin
- 3.5.0
+ 3.5.1
diff --git a/examples/vertx/build.gradle b/examples/vertx/build.gradle
index 311d1a4053..1292bc3335 100644
--- a/examples/vertx/build.gradle
+++ b/examples/vertx/build.gradle
@@ -1,6 +1,6 @@
plugins {
id 'io.vertx.vertx-plugin' version '0.1.0'
- id 'com.google.cloud.tools.jib' version '3.5.0'
+ id 'com.google.cloud.tools.jib' version '3.5.1'
}
repositories {
diff --git a/jib-core/CHANGELOG.md b/jib-core/CHANGELOG.md
index 2eb26154f5..9be39b08c4 100644
--- a/jib-core/CHANGELOG.md
+++ b/jib-core/CHANGELOG.md
@@ -9,6 +9,14 @@ All notable changes to this project will be documented in this file.
### Fixed
+## 0.28.1
+
+### Added
+- feat: support Java 25 main methods
+
+### Changed
+- deps: update `org.ow2.asm:asm` to version 9.9
+
## 0.28.0
### Added
diff --git a/jib-core/README.md b/jib-core/README.md
index 27bc4a5e79..8567866d2d 100644
--- a/jib-core/README.md
+++ b/jib-core/README.md
@@ -22,7 +22,7 @@ Add Jib Core as a dependency using Maven:
com.google.cloud.tools
jib-core
- 0.28.0
+ 0.28.1
```
@@ -30,7 +30,7 @@ Add Jib Core as a dependency using Gradle:
```groovy
dependencies {
- compile 'com.google.cloud.tools:jib-core:0.28.0'
+ compile 'com.google.cloud.tools:jib-core:0.28.1'
}
```
diff --git a/jib-gradle-plugin/CHANGELOG.md b/jib-gradle-plugin/CHANGELOG.md
index 8e371af50d..f9a1f61e2b 100644
--- a/jib-gradle-plugin/CHANGELOG.md
+++ b/jib-gradle-plugin/CHANGELOG.md
@@ -9,6 +9,14 @@ All notable changes to this project will be documented in this file.
### Fixed
+## 3.5.1
+
+### Added
+- feat: support Java 25 main methods
+
+### Changed
+- deps: update `org.ow2.asm:asm` to version 9.9
+
## 3.5.0
### Added
diff --git a/jib-gradle-plugin/README.md b/jib-gradle-plugin/README.md
index aec218ae47..ef0721b5c3 100644
--- a/jib-gradle-plugin/README.md
+++ b/jib-gradle-plugin/README.md
@@ -53,7 +53,7 @@ In your Gradle Java project, add the plugin to your `build.gradle`:
```groovy
plugins {
- id 'com.google.cloud.tools.jib' version '3.5.0'
+ id 'com.google.cloud.tools.jib' version '3.5.1'
}
```
diff --git a/jib-maven-plugin/CHANGELOG.md b/jib-maven-plugin/CHANGELOG.md
index be4a0caf62..cbf26fa210 100644
--- a/jib-maven-plugin/CHANGELOG.md
+++ b/jib-maven-plugin/CHANGELOG.md
@@ -9,6 +9,14 @@ All notable changes to this project will be documented in this file.
### Fixed
+## 3.5.1
+
+### Added
+- feat: support Java 25 main methods
+
+### Changed
+- deps: update `org.ow2.asm:asm` to version 9.9
+
## 3.5.0
### Added
diff --git a/jib-maven-plugin/README.md b/jib-maven-plugin/README.md
index c019104f2c..69aad7da0f 100644
--- a/jib-maven-plugin/README.md
+++ b/jib-maven-plugin/README.md
@@ -48,7 +48,7 @@ For information about the project, see the [Jib project README](../README.md).
You can containerize your application easily with one command:
```shell
-mvn compile com.google.cloud.tools:jib-maven-plugin:3.5.0:build -Dimage=
+mvn compile com.google.cloud.tools:jib-maven-plugin:3.5.1:build -Dimage=
```
This builds and pushes a container image for your application to a container registry. *If you encounter authentication issues, see [Authentication Methods](#authentication-methods).*
@@ -56,7 +56,7 @@ This builds and pushes a container image for your application to a container reg
To build to a Docker daemon, use:
```shell
-mvn compile com.google.cloud.tools:jib-maven-plugin:3.5.0:dockerBuild
+mvn compile com.google.cloud.tools:jib-maven-plugin:3.5.1:dockerBuild
```
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`:
com.google.cloud.tools
jib-maven-plugin
- 3.5.0
+ 3.5.1
myimage