Skip to content

Commit d48d262

Browse files
committed
Update project name to 'ds-spring-user-framework'
1 parent de20a21 commit d48d262

2 files changed

Lines changed: 26 additions & 12 deletions

File tree

build.gradle

Lines changed: 25 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,31 @@
11
plugins {
2-
id 'java'
3-
id 'org.springframework.boot' version '3.3.5'
4-
id 'io.spring.dependency-management' version '1.1.6'
5-
id "com.github.ben-manes.versions" version "0.51.0"
6-
2+
id 'org.springframework.boot' version '3.3.4'
3+
id 'io.spring.dependency-management' version '1.1.6'
4+
id 'com.github.ben-manes.versions' version '0.51.0'
5+
id 'java-library'
6+
id 'maven-publish'
7+
id 'signing'
8+
id 'com.vanniktech.maven.publish' version '0.30.0'
79
}
810

9-
group = 'com.digitalsanctuary.spring'
11+
group = 'com.digitalsanctuary.springuser'
1012
version = '3.0.0-SNAPSHOT'
11-
sourceCompatibility = '17'
12-
targetCompatibility = '17'
13+
description = 'Spring User Framework'
14+
15+
ext {
16+
springBootVersion = '3.3.5'
17+
lombokVersion = '1.18.34'
18+
}
19+
20+
java {
21+
toolchain {
22+
languageVersion = JavaLanguageVersion.of(17)
23+
}
24+
}
25+
26+
repositories {
27+
mavenCentral()
28+
}
1329

1430
// Define the configurations used in the project
1531
configurations {
@@ -26,9 +42,7 @@ configurations {
2642
dev
2743
}
2844

29-
repositories {
30-
mavenCentral()
31-
}
45+
3246

3347
dependencies {
3448
// Spring Boot starters

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rootProject.name = 'user'
1+
rootProject.name = 'ds-spring-user-framework'

0 commit comments

Comments
 (0)