Commit e87e9de 1 parent f10fbba commit e87e9de Copy full SHA for e87e9de
File tree 3 files changed +8
-15
lines changed
3 files changed +8
-15
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,7 @@ plugins {
22
22
group = ' gdk'
23
23
24
24
repositories {
25
- maven {
26
- url ' https://s01.oss.sonatype.org/content/repositories/snapshots'
27
- }
28
- maven {
29
- url ' https://artifacthub-phx.oci.oraclecorp.com/artifactory/micronaut-gcn-stage/'
30
- }
25
+ maven { url ' https://maven.oracle.com/public' }
31
26
mavenCentral()
32
27
}
33
28
@@ -55,8 +50,8 @@ publishing {
55
50
}
56
51
repositories {
57
52
maven {
58
- name = " build"
59
- url = rootProject. layout. buildDirectory. dir(" repo" )
53
+ name = ' build'
54
+ url = rootProject. layout. buildDirectory. dir(' repo' )
60
55
}
61
56
}
62
57
}
Original file line number Diff line number Diff line change 1
1
org.gradle.parallel =true
2
2
org.gradle.caching =true
3
- version =4.6.0.3
3
+ version =4.7.3.1
Original file line number Diff line number Diff line change @@ -24,14 +24,12 @@ file('.').eachDir {
24
24
25
25
enableFeaturePreview ' TYPESAFE_PROJECT_ACCESSORS'
26
26
27
- String [] fileLines = new File (rootProject. projectDir. absoluteFile, " gradle/templates.versions.toml" ). text. split(" \n " )
28
- String micronautPlatformVersion = fileLines. find { it. contains(" micronaut-platform" ) }. split(" = " )[1 ]. replace(' "' , ' ' ). strip()
27
+ String [] fileLines = new File (rootProject. projectDir. absoluteFile, ' gradle/templates.versions.toml' ). text. split(' \n ' )
28
+ String micronautPlatformVersion = fileLines. find { it. contains(' micronaut-platform' ) }. split(' = ' )[1 ]. replace(' "' , ' ' ). strip()
29
29
30
30
dependencyResolutionManagement {
31
31
repositories {
32
- maven {
33
- url ' https://artifacthub-phx.oci.oraclecorp.com/artifactory/micronaut-gcn-stage/'
34
- }
32
+ maven { url ' https://maven.oracle.com/public' }
35
33
mavenCentral()
36
34
gradlePluginPortal()
37
35
}
@@ -40,7 +38,7 @@ dependencyResolutionManagement {
40
38
from " io.micronaut.platform:micronaut-platform:$micronautPlatformVersion "
41
39
}
42
40
templateLibs {
43
- from(files(" gradle/templates.versions.toml" ))
41
+ from(files(' gradle/templates.versions.toml' ))
44
42
}
45
43
}
46
44
}
You can’t perform that action at this time.
0 commit comments