Skip to content

Commit 07d2af7

Browse files
authored
Merge pull request #18850 from panos-kakos/JAVA-49185
[JAVA-49185] Created parent-spring-7 module
2 parents 57233cc + 1764483 commit 07d2af7

File tree

3 files changed

+49
-0
lines changed

3 files changed

+49
-0
lines changed

parent-spring-7/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## Parent Spring 7
2+
3+
This is a parent module for all projects using Spring 7

parent-spring-7/pom.xml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<artifactId>parent-spring-7</artifactId>
7+
<version>0.0.1-SNAPSHOT</version>
8+
<name>parent-spring-7</name>
9+
<packaging>pom</packaging>
10+
<description>Parent for all spring 7 core modules</description>
11+
12+
<parent>
13+
<groupId>com.baeldung</groupId>
14+
<artifactId>parent-modules</artifactId>
15+
<version>1.0.0-SNAPSHOT</version>
16+
</parent>
17+
18+
<dependencyManagement>
19+
<dependencies>
20+
<dependency>
21+
<groupId>org.springframework</groupId>
22+
<artifactId>spring-framework-bom</artifactId>
23+
<version>${spring.version}</version>
24+
<type>pom</type>
25+
<scope>import</scope>
26+
</dependency>
27+
</dependencies>
28+
</dependencyManagement>
29+
30+
<dependencies>
31+
<dependency>
32+
<groupId>org.springframework</groupId>
33+
<artifactId>spring-core</artifactId>
34+
</dependency>
35+
</dependencies>
36+
37+
<properties>
38+
<spring.version>7.0.0-M9</spring.version>
39+
</properties>
40+
41+
</project>

pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -556,6 +556,7 @@
556556
<module>parent-boot-4</module>
557557
<module>parent-spring-5</module>
558558
<module>parent-spring-6</module>
559+
<module>parent-spring-7</module>
559560
<module>apache-kafka</module>
560561
<module>core-groovy-modules</module>
561562
<module>core-java-modules/core-java-concurrency-simple</module>
@@ -617,6 +618,7 @@
617618
<module>parent-boot-4</module>
618619
<module>parent-spring-5</module>
619620
<module>parent-spring-6</module>
621+
<module>parent-spring-7</module>
620622
<module>akka-modules</module>
621623
<module>algorithms-modules</module>
622624
<module>apache-cxf-modules</module>
@@ -1007,6 +1009,7 @@
10071009
<module>parent-boot-4</module>
10081010
<module>parent-spring-5</module>
10091011
<module>parent-spring-6</module>
1012+
<module>parent-spring-7</module>
10101013
<module>apache-kafka</module>
10111014
<module>core-groovy-modules</module>
10121015
<module>core-java-modules/core-java-concurrency-simple</module>
@@ -1062,6 +1065,7 @@
10621065
<module>parent-boot-4</module>
10631066
<module>parent-spring-5</module>
10641067
<module>parent-spring-6</module>
1068+
<module>parent-spring-7</module>
10651069
<module>akka-modules</module>
10661070
<module>algorithms-modules</module>
10671071
<module>apache-cxf-modules</module>
@@ -1473,6 +1477,7 @@
14731477
<module>parent-boot-4</module>
14741478
<module>parent-spring-5</module>
14751479
<module>parent-spring-6</module>
1480+
<module>parent-spring-7</module>
14761481
</modules>
14771482
</profile>
14781483

0 commit comments

Comments
 (0)