Bump spring boot, docker plugin

This commit is contained in:
Charles Gould 2020-05-09 20:21:53 -05:00
parent 4648bb83d2
commit 6ad609247b
2 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.1.RELEASE</version> <version>2.2.7.RELEASE</version>
</parent> </parent>
<groupId>com.charego</groupId> <groupId>com.charego</groupId>
@ -27,8 +27,8 @@
</modules> </modules>
<profiles> <profiles>
<!-- Prevent client module from building on Heroku --> <!-- Disable client module by default -->
<!-- Heroku's JDKs are headless --> <!-- The build fails under headless JDK -->
<profile> <profile>
<id>javafx</id> <id>javafx</id>
<modules> <modules>

View File

@ -62,12 +62,12 @@
<plugin> <plugin>
<groupId>com.google.cloud.tools</groupId> <groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId> <artifactId>jib-maven-plugin</artifactId>
<version>1.8.0</version> <version>2.2.0</version>
<configuration> <configuration>
<!-- Enable this setting to allow pushes to local Docker registry --> <!-- Enable this setting to allow pushes to local Docker registry -->
<!--<allowInsecureRegistries>true</allowInsecureRegistries>--> <!--<allowInsecureRegistries>true</allowInsecureRegistries>-->
<from> <from>
<image>gcr.io/distroless/java:11</image> <image>adoptopenjdk:11-jre-openj9</image>
</from> </from>
<container> <container>
<ports> <ports>