1+ /*
2+ * Copyright (C) 2023 CodeCraftersCN.
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ *
14+ * See the License for the specific language governing permissions and
15+ * limitations under the License.
16+ */
17+
118import java.net.URI
219
3- val sGroupId : String by project
4- val sVersion : String by project
20+ val buildGroupId : String by project
21+ val buildVersion : String by project
522val projectUrl: String by project
623val projectGithubUrl: String by project
724val licenseName: String by project
@@ -10,8 +27,8 @@ val licenseUrl: String by project
1027val jacksonVersion: String by project
1128val javaJwtVersion: String by project
1229
13- group = sGroupId
14- version = sVersion
30+ group = buildGroupId
31+ version = buildVersion
1532
1633dependencies {
1734 implementation(project(" :devkit-utils" ))
@@ -35,9 +52,9 @@ tasks.test {
3552publishing {
3653 publications {
3754 create<MavenPublication >(" simpleJwtAuthzero" ) {
38- groupId = sGroupId
55+ groupId = buildGroupId
3956 artifactId = " simple-jwt-authzero"
40- version = sVersion
57+ version = buildVersion
4158
4259 pom {
4360 name = " Simple JWT :: Auth0"
0 commit comments