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

Update version strings for 1.0.2 #1533

Merged
merged 1 commit into from
Mar 5, 2019
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 CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@ To use a local build of the `jib-gradle-plugin`:
mavenCentral()
}
dependencies {
classpath 'com.google.cloud.tools:jib-gradle-plugin:1.0.2-SNAPSHOT'
classpath 'com.google.cloud.tools:jib-gradle-plugin:1.0.3-SNAPSHOT'
}
}

plugins {
// id 'com.google.cloud.tools.jib' version '1.0.1'
// id 'com.google.cloud.tools.jib' version '1.0.2'
}

// Applies the java plugin after Jib to make sure it works in this order.
Expand Down
2 changes: 1 addition & 1 deletion examples/dropwizard/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<dropwizard-template-config.version>1.5.0</dropwizard-template-config.version>

<jib.container.appRoot>/app</jib.container.appRoot>
<jib-maven-plugin.version>1.0.1</jib-maven-plugin.version>
<jib-maven-plugin.version>1.0.2</jib-maven-plugin.version>
</properties>

<dependencyManagement>
Expand Down
2 changes: 1 addition & 1 deletion examples/helloworld/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'com.google.cloud.tools.jib' version '1.0.1'
id 'com.google.cloud.tools.jib' version '1.0.2'
}

sourceCompatibility = 1.8
Expand Down
2 changes: 1 addition & 1 deletion examples/helloworld/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jib-maven-plugin.version>1.0.1</jib-maven-plugin.version>
<jib-maven-plugin.version>1.0.2</jib-maven-plugin.version>
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion examples/java-agent/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'com.google.cloud.tools.jib' version '1.0.1'
id 'com.google.cloud.tools.jib' version '1.0.2'
id 'de.undercouch.download' version '3.4.0'
id "com.gorylenko.gradle-git-properties" version "1.5.2"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/java-agent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jib-maven-plugin.version>1.0.1</jib-maven-plugin.version>
<jib-maven-plugin.version>1.0.2</jib-maven-plugin.version>
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
<download-maven-plugin.version>1.4.1</download-maven-plugin.version>
<git-commit-id-plugin.version>2.2.5</git-commit-id-plugin.version>
Expand Down
2 changes: 1 addition & 1 deletion examples/ktor/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
application
kotlin("jvm") version "1.3.10"
id("com.google.cloud.tools.jib") version "1.0.1"
id("com.google.cloud.tools.jib") version "1.0.2"
}

group = "example"
Expand Down
2 changes: 1 addition & 1 deletion examples/micronaut/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id 'groovy'
id 'io.spring.dependency-management' version '1.0.6.RELEASE'
id 'net.ltgt.apt-idea' version '0.18'
id 'com.google.cloud.tools.jib' version '1.0.1'
id 'com.google.cloud.tools.jib' version '1.0.2'
}

version '0.1'
Expand Down
2 changes: 1 addition & 1 deletion examples/multi-module/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
dependencies {
classpath 'org.springframework.boot:spring-boot-gradle-plugin:2.0.3.RELEASE'
classpath 'io.spring.gradle:dependency-management-plugin:1.0.6.RELEASE'
classpath 'gradle.plugin.com.google.cloud.tools:jib-gradle-plugin:1.0.1'
classpath 'gradle.plugin.com.google.cloud.tools:jib-gradle-plugin:1.0.2'
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/multi-module/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</plugin>
</plugins>
</pluginManagement>
Expand Down
2 changes: 1 addition & 1 deletion examples/spring-boot-draft/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
}
}
plugins {
id 'com.google.cloud.tools.jib' version '1.0.1'
id 'com.google.cloud.tools.jib' version '1.0.2'
}

apply plugin: 'java'
Expand Down
2 changes: 1 addition & 1 deletion examples/spring-boot-draft/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<jib-maven-plugin.version>1.0.1</jib-maven-plugin.version>
<jib-maven-plugin.version>1.0.2</jib-maven-plugin.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion examples/spring-boot-kubernetes/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id 'idea'
id 'org.springframework.boot' version '2.0.4.RELEASE'
id 'io.spring.dependency-management' version '1.0.6.RELEASE'
id 'com.google.cloud.tools.jib' version '1.0.1'
id 'com.google.cloud.tools.jib' version '1.0.2'
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion examples/spring-boot-kubernetes/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</plugin>
</plugins>
</build>
Expand Down
2 changes: 1 addition & 1 deletion examples/vertx/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'io.vertx.vertx-plugin' version '0.1.0'
id 'com.google.cloud.tools.jib' version '1.0.1'
id 'com.google.cloud.tools.jib' version '1.0.2'
}

repositories {
Expand Down
10 changes: 8 additions & 2 deletions jib-gradle-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,17 @@ All notable changes to this project will be documented in this file.

### Added

### Changed

### Fixed

## 1.0.2

### Added

- Java 9+ WAR projects are now supported and run on the distroless Jetty Java 11 image (https://github.com/GoogleContainerTools/distroless) by default. Java 8 projects remain on the distroless Jetty Java 8 image. ([#1510](https://github.com/GoogleContainerTools/jib/issues/1510))
- Now supports authentication against Azure Container Registry using `docker-credential-acr-*` credential helpers. ([#1490](https://github.com/GoogleContainerTools/jib/issues/1490))

### Changed

### Fixed

- Fixed an issue where setting `allowInsecureRegistries` may fail to try HTTP. ([#1517](https://github.com/GoogleContainerTools/jib/issues/1517))
Expand Down
2 changes: 1 addition & 1 deletion jib-gradle-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ In your Gradle Java project, add the plugin to your `build.gradle`:

```groovy
plugins {
id 'com.google.cloud.tools.jib' version '1.0.1'
id 'com.google.cloud.tools.jib' version '1.0.2'
}
```

Expand Down
10 changes: 8 additions & 2 deletions jib-maven-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,18 @@ All notable changes to this project will be documented in this file.

### Added

### Changed

### Fixed

## 1.0.2

### Added

- Java 9+ WAR projects are now supported and run on the distroless Jetty Java 11 image (https://github.com/GoogleContainerTools/distroless) by default. Java 8 projects remain on the distroless Jetty Java 8 image. ([#1510](https://github.com/GoogleContainerTools/jib/issues/1510))
- Now supports authentication against Azure Container Registry using `docker-credential-acr-*` credential helpers. ([#1490](https://github.com/GoogleContainerTools/jib/issues/1490))
- Batch mode now disables build progress bar. ([#1513](https://github.com/GoogleContainerTools/jib/issues/1513))

### Changed

### Fixed

- Fixed an issue where setting `<allowInsecureRegistries>` may fail to try HTTP. ([#1517](https://github.com/GoogleContainerTools/jib/issues/1517))
Expand Down
6 changes: 3 additions & 3 deletions jib-maven-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ 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:1.0.1:build -Dimage=<MY IMAGE>
mvn compile com.google.cloud.tools:jib-maven-plugin:1.0.2:build -Dimage=<MY IMAGE>
```

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

To build to a Docker daemon, use:

```shell
mvn compile com.google.cloud.tools:jib-maven-plugin:1.0.1:dockerBuild
mvn compile com.google.cloud.tools:jib-maven-plugin:1.0.2:dockerBuild
```

If you would like to set up Jib as part of your Maven build, follow the guide below.
Expand All @@ -64,7 +64,7 @@ In your Maven Java project, add the plugin to your `pom.xml`:
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<configuration>
<to>
<image>myimage</image>
Expand Down