Skip to content

Commit da82d3d

Browse files
committed
Updated dependencies to 1.7.3
1 parent 7d3205e commit da82d3d

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Supports for building Java applications as GraalVM native images.
1212
Using the [plugins DSL](https://docs.gradle.org/current/userguide/plugins.html#sec:plugins_block):
1313
```groovy
1414
plugins {
15-
id 'com.formkiq.gradle.graalvm-native-plugin' version '1.7.0'
15+
id 'com.formkiq.gradle.graalvm-native-plugin' version '1.7.3'
1616
}
1717
```
1818

@@ -25,7 +25,7 @@ buildscript {
2525
}
2626
}
2727
dependencies {
28-
classpath "com.formkiq.gradle:graalvm-native-plugin:1.7.0"
28+
classpath "com.formkiq.gradle:graalvm-native-plugin:1.7.3"
2929
}
3030
}
3131
@@ -36,7 +36,7 @@ apply plugin: "com.formkiq.gradle.graalvm-native-plugin"
3636
Using the [plugins DSL](https://docs.gradle.org/current/userguide/plugins.html#sec:plugins_block):
3737
```kotlin
3838
plugins {
39-
id("com.formkiq.gradle.graalvm-native-plugin") version "1.7.0"
39+
id("com.formkiq.gradle.graalvm-native-plugin") version "1.7.3"
4040
}
4141
```
4242

@@ -49,7 +49,7 @@ buildscript {
4949
}
5050
}
5151
dependencies {
52-
classpath("com.formkiq.gradle:graalvm-native-plugin:1.7.0")
52+
classpath("com.formkiq.gradle:graalvm-native-plugin:1.7.3")
5353
}
5454
}
5555

samples/aws-lambda/HelloWorldFunction/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
plugins {
33
id 'java-library'
4-
id 'com.formkiq.gradle.graalvm-native-plugin' version '1.7.0-SNAPSHOT'
4+
id 'com.formkiq.gradle.graalvm-native-plugin' version '1.7.3'
55
}
66

77
repositories {

samples/dockerfile/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77
plugins {
88
id 'java'
9-
id 'com.formkiq.gradle.graalvm-native-plugin' version '1.7.0-SNAPSHOT'
9+
id 'com.formkiq.gradle.graalvm-native-plugin' version '1.7.3'
1010
}
1111

1212
nativeImage {

samples/helloworld/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
plugins {
1010
// Apply the application plugin to add support for building a CLI application in Java.
1111
id 'application'
12-
id 'com.formkiq.gradle.graalvm-native-plugin' version '1.7.0-SNAPSHOT'
12+
id 'com.formkiq.gradle.graalvm-native-plugin' version '1.7.3'
1313
}
1414

1515
sourceCompatibility = "11"

0 commit comments

Comments
 (0)