Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update versions for plugins 3.4.3 release and jib-core 0.27.1 #174

Merged
merged 1 commit into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ The following example adds and runs the [Jib Layer-Filter Extension](first-party
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>3.4.2</version>
<version>3.4.3</version>

<!-- 1. have extension classes available on Jib's runtime classpath -->
<dependencies>
Expand All @@ -65,7 +65,7 @@ The following example adds and runs the [Jib Layer-Filter Extension](first-party

When properly configured and loaded, Jib outputs the loaded extensions in the log. When you configure multiple `<pluginExtension>`s, Jib runs the extensions in the given order.
```
[INFO] --- jib-maven-plugin:3.4.1:build (default-cli) @ helloworld ---
[INFO] --- jib-maven-plugin:3.4.3:build (default-cli) @ helloworld ---
[INFO] Running extension: com.google.cloud.tools.jib.maven.extension.layerfilter.JibLayerFilterExtension
```

Expand Down
4 changes: 2 additions & 2 deletions first-party/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ subprojects {
GUAVA: 'com.google.guava:guava:30.1.1-jre',
JSR305: 'com.google.code.findbugs:jsr305:3.0.2', // transitively pulled in by GUAVA

JIB_CORE: 'com.google.cloud.tools:jib-core:0.27.0',
JIB_GRADLE: 'com.google.cloud.tools:jib-gradle-plugin:3.4.2',
JIB_CORE: 'com.google.cloud.tools:jib-core:0.27.1',
JIB_GRADLE: 'com.google.cloud.tools:jib-gradle-plugin:3.4.3',

// for Build Plan and Jib Plugins Extension API
JIB_GRADLE_EXTENSION: 'com.google.cloud.tools:jib-gradle-plugin-extension-api:0.4.0',
Expand Down
2 changes: 1 addition & 1 deletion first-party/jib-layer-filter-extension-maven/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Check out the [genenal instructions](../../README.md#using-jib-plugin-extensions
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>3.4.2</version>
<version>3.4.3</version>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion first-party/jib-native-image-extension-maven/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Check out the [general instructions](../../README.md#using-jib-plugin-extensions
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>3.4.2</version>
<version>3.4.3</version>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion first-party/jib-ownership-extension-maven/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Check out the [genenal instructions](../../README.md#using-jib-plugin-extensions
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>3.4.2</version>
<version>3.4.3</version>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion first-party/jib-quarkus-extension-maven/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Note that `<container><mainClass>` should be set to some placeholder value to su
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>3.4.2</version>
<version>3.4.3</version>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion first-party/jib-spring-boot-extension-maven/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Check out the [genenal instructions](../../README.md#using-jib-plugin-extensions
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>3.4.2</version>
<version>3.4.3</version>

<dependencies>
<dependency>
Expand Down
Loading