-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathbuild.gradle
31 lines (26 loc) · 1.19 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import io.micronaut.internal.starter.tasks.GradlePropertiesNextSnapshot
import io.micronaut.internal.starter.tasks.PropertiesNotSnapshot
plugins {
id "io.micronaut.internal.starter.aggregator"
id "io.micronaut.build.internal.dependency-updates"
// https://github.com/bmuschko/gradle-docker-plugin/issues/1123
// https://github.com/gradle/gradle/issues/17559
id("com.bmuschko.docker-remote-api") version "9.4.0" apply false
id("io.micronaut.application") version(templateLibs.versions.micronaut.gradle.plugin) apply false
id("io.micronaut.crac") version(templateLibs.versions.micronaut.gradle.plugin) apply false
}
tasks.register("micronautCoreNextSnapshot", GradlePropertiesNextSnapshot) {
propertyName = 'micronautCoreVersion'
}
tasks.register("micronautPlatformNextSnapshot", GradlePropertiesNextSnapshot) {
propertyName = 'micronautVersion'
}
tasks.register("micronautCoreNotSnapshot", PropertiesNotSnapshot) {
propertyName = 'micronautCoreVersion'
}
tasks.register("micronautPlatformNotSnapshot", PropertiesNotSnapshot) {
propertyName = 'micronautVersion'
}
tasks.register("projectVersionNotSnapshot", PropertiesNotSnapshot) {
propertyName = 'projectVersion'
}