From c5ef7af8433cb362260ddd5186734983e46016b5 Mon Sep 17 00:00:00 2001 From: fankesyooni Date: Thu, 28 Dec 2023 23:25:50 +0800 Subject: [PATCH] chore: specify project name in properties --- .../src/main/kotlin/com/highcapable/flexilocale/FlexiLocale.kt | 2 +- gradle.properties | 1 + settings.gradle.kts | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/flexilocale-gradle-plugin/src/main/kotlin/com/highcapable/flexilocale/FlexiLocale.kt b/flexilocale-gradle-plugin/src/main/kotlin/com/highcapable/flexilocale/FlexiLocale.kt index 459284b..0666a03 100644 --- a/flexilocale-gradle-plugin/src/main/kotlin/com/highcapable/flexilocale/FlexiLocale.kt +++ b/flexilocale-gradle-plugin/src/main/kotlin/com/highcapable/flexilocale/FlexiLocale.kt @@ -37,5 +37,5 @@ object FlexiLocale { const val VERSION = FlexiLocaleProperties.PROJECT_VERSION /** 项目地址 */ - const val PROJECT_URL = FlexiLocaleProperties.POM_URL + const val PROJECT_URL = FlexiLocaleProperties.PROJECT_URL } \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index b5ac6c5..1501b23 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,6 @@ # Project Configuration project.name=FlexiLocale +project.url=https://github.com/BetterAndroid/FlexiLocale project.groupName=com.highcapable.flexilocale project.moduleName=flexi-locale project.version=1.0.1 diff --git a/settings.gradle.kts b/settings.gradle.kts index ba69a93..0bbb219 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -16,6 +16,7 @@ sweetProperty { global { sourcesCode { className = rootProject.name + includeKeys("^project\\..*\$".toRegex()) isEnableRestrictedAccess = true } }