Skip to content

Commit 26c5272

Browse files
committed
Ensure Common Maven Coordinates
1 parent 8a521f7 commit 26c5272

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

complete/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id 'io.spring.dependency-management' version '1.1.7'
55
}
66

7-
group = 'com.example'
7+
group = 'org.springframework'
88
version = '0.0.1-SNAPSHOT'
99

1010
java {
@@ -24,4 +24,4 @@ dependencies {
2424

2525
tasks.named('test') {
2626
useJUnitPlatform()
27-
}
27+
}

complete/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
<version>3.5.8</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
11-
<groupId>com.example</groupId>
12-
<artifactId>demo</artifactId>
11+
<groupId>org.springframework</groupId>
12+
<artifactId>accessing-data-cassandra-complete</artifactId>
1313
<version>0.0.1-SNAPSHOT</version>
1414
<name>demo</name>
15-
<description>Demo project for Spring Boot</description>
15+
<description>Demo project for Spring Data Cassandra</description>
1616
<properties>
1717
<java.version>17</java.version>
1818
</properties>
@@ -52,4 +52,4 @@
5252
</plugins>
5353
</build>
5454

55-
</project>
55+
</project>

complete/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rootProject.name = 'accessing-data-cassandra'
1+
rootProject.name = 'accessing-data-cassandra-complete'

initial/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id 'java'
55
}
66

7-
group = 'com.example'
7+
group = 'org.springframework'
88
version = '0.0.1-SNAPSHOT'
99
sourceCompatibility = '17'
1010

initial/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
<version>3.5.8</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
12-
<groupId>com.example</groupId>
13-
<artifactId>accessing-data-cassandra</artifactId>
12+
<groupId>org.springframework</groupId>
13+
<artifactId>accessing-data-cassandra-initial</artifactId>
1414
<version>0.0.1-SNAPSHOT</version>
1515
<name>accessing-data-cassandra</name>
16-
<description>Demo project for Spring Boot</description>
16+
<description>Demo project for Spring Data Cassandra</description>
1717

1818
<properties>
1919
<java.version>17</java.version>

initial/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rootProject.name = 'accessing-data-cassandra'
1+
rootProject.name = 'accessing-data-cassandra-initial'

0 commit comments

Comments
 (0)