Skip to content
This repository was archived by the owner on Jun 27, 2022. It is now read-only.

Commit b5ea50f

Browse files
committed
Update dependencies; bump up release version
1 parent 5c02173 commit b5ea50f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Supports for building Spring Boot applications as GraalVM native images.
2929
Using the [plugins DSL](https://docs.gradle.org/current/userguide/plugins.html#sec:plugins_block):
3030
```groovy
3131
plugins {
32-
id 'com.github.ayltai.spring-graalvm-native-plugin' version '1.4.9'
32+
id 'com.github.ayltai.spring-graalvm-native-plugin' version '1.4.10'
3333
}
3434
```
3535

@@ -43,7 +43,7 @@ buildscript {
4343
}
4444
4545
dependencies {
46-
classpath 'gradle.plugin.com.github.ayltai:spring-graalvm-native-plugin:1.4.9'
46+
classpath 'gradle.plugin.com.github.ayltai:spring-graalvm-native-plugin:1.4.10'
4747
}
4848
}
4949
@@ -54,7 +54,7 @@ apply plugin: 'com.github.ayltai.spring-graalvm-native-plugin'
5454
Using the [plugins DSL](https://docs.gradle.org/current/userguide/plugins.html#sec:plugins_block):
5555
```groovy
5656
plugins {
57-
id('com.github.ayltai.spring-graalvm-native-plugin') version '1.4.9'
57+
id('com.github.ayltai.spring-graalvm-native-plugin') version '1.4.10'
5858
}
5959
```
6060

@@ -68,7 +68,7 @@ buildscript {
6868
}
6969
7070
dependencies {
71-
classpath('gradle.plugin.com.github.ayltai:spring-graalvm-native-plugin:1.4.9')
71+
classpath('gradle.plugin.com.github.ayltai:spring-graalvm-native-plugin:1.4.10')
7272
}
7373
}
7474
```
@@ -109,7 +109,7 @@ public class TomcatApplication {
109109
## Configuration
110110
| Property | Type | Description |
111111
|----------|------|-------------|
112-
| `toolVersion` | `String` | The GraalVM Community Edition version to download. Default to `21.0.0`. |
112+
| `toolVersion` | `String` | The GraalVM Community Edition version to download. Default to `21.1.0`. |
113113
| `javaVersion` | `String` | The JDK version to be downloaded with GraalVM Community Edition. Default to `8`. |
114114
| `download` | `String` | Specify when to download GraalVM Community Edition. Supports `default` which downloads GraalVM tools only if they are not already downloaded, `always` which always (re-)download GraalVM tools, and `skip` which skips downloading GraalVM tools and assumes they are already installed. |
115115
| `mainClassName` (Required) | `String` | The fully qualified name of the Java class that contains a `main` method for the entry point of the Native Image executable. |

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ plugins {
1212
apply plugin: 'maven-publish'
1313

1414
group 'com.github.ayltai'
15-
version '1.4.9'
15+
version '1.4.10'
1616

1717
sourceCompatibility = JavaVersion.VERSION_1_8
1818
targetCompatibility = JavaVersion.VERSION_1_8
1919

2020
repositories {
21-
jcenter()
21+
mavenCentral()
2222
}
2323

2424
ext {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)