Skip to content

Commit 596e882

Browse files
committed
GH-197 - Promote project out of experimental status.
Set version number to 1.0.0-SNAPSHOT. New group id is org.springframework.modulith. Also adapt links to new project home.
1 parent 60ce7da commit 596e882

File tree

33 files changed

+167
-167
lines changed

33 files changed

+167
-167
lines changed

etc/introducing-spring-modulith.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ https://spring.io/projects/spring-modulith[_Spring Modulith_] is a new, experime
1414
[[example]]
1515
== An Example
1616

17-
Let us have a look at https://github.com/spring-projects-experimental/spring-modulith/tree/main/spring-modulith-example[a concrete example].
17+
Let us have a look at https://github.com/spring-projects/spring-modulith/tree/main/spring-modulith-example[a concrete example].
1818
Assume we need to develop an e-commerce application, for which we start with two logical modules.
1919
An _order_ module deals with order processing, and an _inventory_ keeps track of the stock for the products we sell.
2020
Our primary focus for this post is the use case that the inventory needs to be updated once an order is completed.
@@ -164,7 +164,7 @@ On top of the features described above, the first release has many more features
164164
* Runtime link:{docs}#observability[observability] on the application module level.
165165
* A link:{docs}#moments[Passage of Time Events] implementation.
166166

167-
You can find more about the project in link:{docs}[its reference documentation] and check out the https://github.com/spring-projects-experimental/spring-modulith/tree/main/spring-modulith-example[example project].
167+
You can find more about the project in link:{docs}[its reference documentation] and check out the https://github.com/spring-projects/spring-modulith/tree/main/spring-modulith-example[example project].
168168
Despite the broad set of features already available, this is just the start of the journey.
169169
We look forward to your feedback and feature ideas for the project.
170170
Also, be sure to follow us https://twitter.com/springmodulith[on Twitter] for the latest social media updates on the project.

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22
<modelVersion>4.0.0</modelVersion>
33

4-
<groupId>org.springframework.experimental</groupId>
4+
<groupId>org.springframework.modulith</groupId>
55
<artifactId>spring-modulith</artifactId>
6-
<version>0.7.0-SNAPSHOT</version>
6+
<version>1.0.0-SNAPSHOT</version>
77

88
<packaging>pom</packaging>
99

@@ -580,8 +580,8 @@ limitations under the License.
580580
</build>
581581

582582
<scm>
583-
<url>https://github.com/spring-projects-experimental/spring-modulith</url>
584-
<connection>scm:git:https://github.com/spring-projects-experimental/spring-modulith</connection>
583+
<url>https://github.com/spring-projects/spring-modulith</url>
584+
<connection>scm:git:https://github.com/spring-projects/spring-modulith</connection>
585585
<developerConnection>scm:git:ssh://git@github.com/spring-projects-experimental/spring-modulith</developerConnection>
586586
<tag>main</tag>
587587
</scm>

spring-modulith-actuator/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<modelVersion>4.0.0</modelVersion>
33

44
<parent>
5-
<groupId>org.springframework.experimental</groupId>
5+
<groupId>org.springframework.modulith</groupId>
66
<artifactId>spring-modulith</artifactId>
7-
<version>0.7.0-SNAPSHOT</version>
7+
<version>1.0.0-SNAPSHOT</version>
88
</parent>
99

1010
<name>Spring Modulith - Actuator</name>
@@ -17,7 +17,7 @@
1717
<dependencies>
1818

1919
<dependency>
20-
<groupId>org.springframework.experimental</groupId>
20+
<groupId>org.springframework.modulith</groupId>
2121
<artifactId>spring-modulith-runtime</artifactId>
2222
<version>${project.version}</version>
2323
</dependency>
@@ -33,7 +33,7 @@
3333
</dependency>
3434

3535
<dependency>
36-
<groupId>org.springframework.experimental</groupId>
36+
<groupId>org.springframework.modulith</groupId>
3737
<artifactId>spring-modulith-test</artifactId>
3838
<version>${project.version}</version>
3939
<scope>test</scope>

spring-modulith-api/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<modelVersion>4.0.0</modelVersion>
33

44
<parent>
5-
<groupId>org.springframework.experimental</groupId>
5+
<groupId>org.springframework.modulith</groupId>
66
<artifactId>spring-modulith</artifactId>
7-
<version>0.7.0-SNAPSHOT</version>
7+
<version>1.0.0-SNAPSHOT</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

spring-modulith-bom/pom.xml

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -11,118 +11,118 @@
1111
<description>Reference documentation and Javadoc</description>
1212

1313
<parent>
14-
<groupId>org.springframework.experimental</groupId>
14+
<groupId>org.springframework.modulith</groupId>
1515
<artifactId>spring-modulith</artifactId>
16-
<version>0.7.0-SNAPSHOT</version>
16+
<version>1.0.0-SNAPSHOT</version>
1717
<relativePath>../pom.xml</relativePath>
1818
</parent>
1919

2020
<dependencyManagement>
2121
<dependencies>
2222
<dependency>
23-
<groupId>org.springframework.experimental</groupId>
23+
<groupId>org.springframework.modulith</groupId>
2424
<artifactId>spring-modulith-actuator</artifactId>
25-
<version>0.7.0-SNAPSHOT</version>
25+
<version>1.0.0-SNAPSHOT</version>
2626
</dependency>
2727
<dependency>
28-
<groupId>org.springframework.experimental</groupId>
28+
<groupId>org.springframework.modulith</groupId>
2929
<artifactId>spring-modulith-api</artifactId>
30-
<version>0.7.0-SNAPSHOT</version>
30+
<version>1.0.0-SNAPSHOT</version>
3131
</dependency>
3232
<dependency>
33-
<groupId>org.springframework.experimental</groupId>
33+
<groupId>org.springframework.modulith</groupId>
3434
<artifactId>spring-modulith-core</artifactId>
35-
<version>0.7.0-SNAPSHOT</version>
35+
<version>1.0.0-SNAPSHOT</version>
3636
</dependency>
3737
<dependency>
38-
<groupId>org.springframework.experimental</groupId>
38+
<groupId>org.springframework.modulith</groupId>
3939
<artifactId>spring-modulith-docs</artifactId>
40-
<version>0.7.0-SNAPSHOT</version>
40+
<version>1.0.0-SNAPSHOT</version>
4141
</dependency>
4242
<dependency>
43-
<groupId>org.springframework.experimental</groupId>
43+
<groupId>org.springframework.modulith</groupId>
4444
<artifactId>spring-modulith-events</artifactId>
45-
<version>0.7.0-SNAPSHOT</version>
45+
<version>1.0.0-SNAPSHOT</version>
4646
</dependency>
4747
<dependency>
48-
<groupId>org.springframework.experimental</groupId>
48+
<groupId>org.springframework.modulith</groupId>
4949
<artifactId>spring-modulith-events-core</artifactId>
50-
<version>0.7.0-SNAPSHOT</version>
50+
<version>1.0.0-SNAPSHOT</version>
5151
</dependency>
5252
<dependency>
53-
<groupId>org.springframework.experimental</groupId>
53+
<groupId>org.springframework.modulith</groupId>
5454
<artifactId>spring-modulith-events-jackson</artifactId>
55-
<version>0.7.0-SNAPSHOT</version>
55+
<version>1.0.0-SNAPSHOT</version>
5656
</dependency>
5757
<dependency>
58-
<groupId>org.springframework.experimental</groupId>
58+
<groupId>org.springframework.modulith</groupId>
5959
<artifactId>spring-modulith-events-jdbc</artifactId>
60-
<version>0.7.0-SNAPSHOT</version>
60+
<version>1.0.0-SNAPSHOT</version>
6161
</dependency>
6262
<dependency>
63-
<groupId>org.springframework.experimental</groupId>
63+
<groupId>org.springframework.modulith</groupId>
6464
<artifactId>spring-modulith-events-jpa</artifactId>
65-
<version>0.7.0-SNAPSHOT</version>
65+
<version>1.0.0-SNAPSHOT</version>
6666
</dependency>
6767
<dependency>
68-
<groupId>org.springframework.experimental</groupId>
68+
<groupId>org.springframework.modulith</groupId>
6969
<artifactId>spring-modulith-events-mongodb</artifactId>
70-
<version>0.7.0-SNAPSHOT</version>
70+
<version>1.0.0-SNAPSHOT</version>
7171
</dependency>
7272
<dependency>
73-
<groupId>org.springframework.experimental</groupId>
73+
<groupId>org.springframework.modulith</groupId>
7474
<artifactId>spring-modulith-events-tests</artifactId>
75-
<version>0.7.0-SNAPSHOT</version>
75+
<version>1.0.0-SNAPSHOT</version>
7676
</dependency>
7777
<dependency>
78-
<groupId>org.springframework.experimental</groupId>
78+
<groupId>org.springframework.modulith</groupId>
7979
<artifactId>spring-modulith-moments</artifactId>
80-
<version>0.7.0-SNAPSHOT</version>
80+
<version>1.0.0-SNAPSHOT</version>
8181
</dependency>
8282
<dependency>
83-
<groupId>org.springframework.experimental</groupId>
83+
<groupId>org.springframework.modulith</groupId>
8484
<artifactId>spring-modulith-observability</artifactId>
85-
<version>0.7.0-SNAPSHOT</version>
85+
<version>1.0.0-SNAPSHOT</version>
8686
</dependency>
8787
<dependency>
88-
<groupId>org.springframework.experimental</groupId>
88+
<groupId>org.springframework.modulith</groupId>
8989
<artifactId>spring-modulith-runtime</artifactId>
90-
<version>0.7.0-SNAPSHOT</version>
90+
<version>1.0.0-SNAPSHOT</version>
9191
</dependency>
9292
<dependency>
93-
<groupId>org.springframework.experimental</groupId>
93+
<groupId>org.springframework.modulith</groupId>
9494
<artifactId>spring-modulith-starter-core</artifactId>
95-
<version>0.7.0-SNAPSHOT</version>
95+
<version>1.0.0-SNAPSHOT</version>
9696
</dependency>
9797
<dependency>
98-
<groupId>org.springframework.experimental</groupId>
98+
<groupId>org.springframework.modulith</groupId>
9999
<artifactId>spring-modulith-starter-insight</artifactId>
100-
<version>0.7.0-SNAPSHOT</version>
100+
<version>1.0.0-SNAPSHOT</version>
101101
</dependency>
102102
<dependency>
103-
<groupId>org.springframework.experimental</groupId>
103+
<groupId>org.springframework.modulith</groupId>
104104
<artifactId>spring-modulith-starter-jdbc</artifactId>
105-
<version>0.7.0-SNAPSHOT</version>
105+
<version>1.0.0-SNAPSHOT</version>
106106
</dependency>
107107
<dependency>
108-
<groupId>org.springframework.experimental</groupId>
108+
<groupId>org.springframework.modulith</groupId>
109109
<artifactId>spring-modulith-starter-jpa</artifactId>
110-
<version>0.7.0-SNAPSHOT</version>
110+
<version>1.0.0-SNAPSHOT</version>
111111
</dependency>
112112
<dependency>
113-
<groupId>org.springframework.experimental</groupId>
113+
<groupId>org.springframework.modulith</groupId>
114114
<artifactId>spring-modulith-starter-mongodb</artifactId>
115-
<version>0.7.0-SNAPSHOT</version>
115+
<version>1.0.0-SNAPSHOT</version>
116116
</dependency>
117117
<dependency>
118-
<groupId>org.springframework.experimental</groupId>
118+
<groupId>org.springframework.modulith</groupId>
119119
<artifactId>spring-modulith-starter-test</artifactId>
120-
<version>0.7.0-SNAPSHOT</version>
120+
<version>1.0.0-SNAPSHOT</version>
121121
</dependency>
122122
<dependency>
123-
<groupId>org.springframework.experimental</groupId>
123+
<groupId>org.springframework.modulith</groupId>
124124
<artifactId>spring-modulith-test</artifactId>
125-
<version>0.7.0-SNAPSHOT</version>
125+
<version>1.0.0-SNAPSHOT</version>
126126
</dependency>
127127
</dependencies>
128128
</dependencyManagement>

spring-modulith-core/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<modelVersion>4.0.0</modelVersion>
33

44
<parent>
5-
<groupId>org.springframework.experimental</groupId>
5+
<groupId>org.springframework.modulith</groupId>
66
<artifactId>spring-modulith</artifactId>
7-
<version>0.7.0-SNAPSHOT</version>
7+
<version>1.0.0-SNAPSHOT</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

@@ -18,7 +18,7 @@
1818
<dependencies>
1919

2020
<dependency>
21-
<groupId>org.springframework.experimental</groupId>
21+
<groupId>org.springframework.modulith</groupId>
2222
<artifactId>spring-modulith-api</artifactId>
2323
<version>${project.version}</version>
2424
</dependency>

spring-modulith-distribution/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
<description>Reference documentation and Javadoc</description>
1212

1313
<parent>
14-
<groupId>org.springframework.experimental</groupId>
14+
<groupId>org.springframework.modulith</groupId>
1515
<artifactId>spring-modulith</artifactId>
16-
<version>0.7.0-SNAPSHOT</version>
16+
<version>1.0.0-SNAPSHOT</version>
1717
<relativePath>../pom.xml</relativePath>
1818
</parent>
1919

spring-modulith-docs/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<modelVersion>4.0.0</modelVersion>
33

44
<parent>
5-
<groupId>org.springframework.experimental</groupId>
5+
<groupId>org.springframework.modulith</groupId>
66
<artifactId>spring-modulith</artifactId>
7-
<version>0.7.0-SNAPSHOT</version>
7+
<version>1.0.0-SNAPSHOT</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

spring-modulith-events/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<modelVersion>4.0.0</modelVersion>
33

44
<parent>
5-
<groupId>org.springframework.experimental</groupId>
5+
<groupId>org.springframework.modulith</groupId>
66
<artifactId>spring-modulith</artifactId>
7-
<version>0.7.0-SNAPSHOT</version>
7+
<version>1.0.0-SNAPSHOT</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

spring-modulith-events/spring-modulith-events-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<modelVersion>4.0.0</modelVersion>
33

44
<parent>
5-
<groupId>org.springframework.experimental</groupId>
5+
<groupId>org.springframework.modulith</groupId>
66
<artifactId>spring-modulith-events</artifactId>
7-
<version>0.7.0-SNAPSHOT</version>
7+
<version>1.0.0-SNAPSHOT</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

0 commit comments

Comments
 (0)