diff --git a/gradle.properties b/gradle.properties index 804f3d7..74414be 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ projectVersion=0.0.1-SNAPSHOT -graceVersion=2023.0.0-SNAPSHOT +graceVersion=2023.0.0-M5 springBootVersion=3.0.13 springDependencyManagementVersion=1.1.4 tomcatVersion=10.1.16 diff --git a/settings.gradle b/settings.gradle index 77b7433..dc4dd3c 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,12 +1,12 @@ pluginManagement { repositories { - mavenLocal() + // mavenLocal() mavenCentral() gradlePluginPortal() maven { url 'https://repo.gradle.org/gradle/libs-releases' } - if (projectVersion.endsWith('-SNAPSHOT')) { - maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" } - } + // if (projectVersion.endsWith('-SNAPSHOT')) { + // maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" } + // } } plugins { id 'org.springframework.boot' version springBootVersion @@ -18,11 +18,11 @@ pluginManagement { dependencyResolutionManagement { repositories { - mavenLocal() + // mavenLocal() mavenCentral() - if (projectVersion.endsWith('-SNAPSHOT')) { - maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" } - } + // if (projectVersion.endsWith('-SNAPSHOT')) { + // maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" } + // } } }