refactor: Upgrade version to 1.4.0
- Upgrade to 1.4.0 - Upgrade Spring Framework to 6.1.3 to prevent CVE-2024-22233 - Upgrade Spring Boot to 3.2.3 to prevent CVE-2024-22233
This commit is contained in:
+23
-6
@@ -1,14 +1,31 @@
|
||||
/*
|
||||
* Copyright (C) 2023 CodeCraftersCN.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
*
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import java.net.URI
|
||||
|
||||
val sGroupId: String by project
|
||||
val sVersion: String by project
|
||||
val buildGroupId: String by project
|
||||
val buildVersion: String by project
|
||||
val projectUrl: String by project
|
||||
val projectGithubUrl: String by project
|
||||
val licenseName: String by project
|
||||
val licenseUrl: String by project
|
||||
|
||||
group = sGroupId
|
||||
version = sVersion
|
||||
group = buildGroupId
|
||||
version = buildVersion
|
||||
|
||||
dependencies {
|
||||
implementation(project(":devkit-core"))
|
||||
@@ -28,9 +45,9 @@ tasks.test {
|
||||
publishing {
|
||||
publications {
|
||||
create<MavenPublication>("guid") {
|
||||
groupId = sGroupId
|
||||
groupId = buildGroupId
|
||||
artifactId = "guid"
|
||||
version = sVersion
|
||||
version = buildVersion
|
||||
|
||||
pom {
|
||||
name = "DevKit - GUID"
|
||||
|
||||
Reference in New Issue
Block a user