44 xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
55 <modelVersion >4.0.0</modelVersion >
66 <parent >
7- <groupId >ie.emeraldjava </groupId >
8- <artifactId >spring</artifactId >
9- <version >0.0.1-SNAPSHOT </version >
7+ <groupId >org.springframework.boot </groupId >
8+ <artifactId >spring-boot-starter-parent </artifactId >
9+ <version >2.7.11 </version >
1010 </parent >
1111
12+ <groupId >ie.emeraldjava</groupId >
1213 <artifactId >spring-aop-multi</artifactId >
14+ <version >0.0.1-SNAPSHOT</version >
1315 <packaging >pom</packaging >
1416 <modules >
1517 <module >service-a-mod</module >
2426 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
2527 </properties >
2628
29+ <dependencies >
30+ <dependency >
31+ <groupId >org.springframework.boot</groupId >
32+ <artifactId >spring-boot-starter-actuator</artifactId >
33+ </dependency >
34+ <dependency >
35+ <groupId >org.springframework.boot</groupId >
36+ <artifactId >spring-boot-starter-aop</artifactId >
37+ </dependency >
38+ <dependency >
39+ <groupId >org.springframework.boot</groupId >
40+ <artifactId >spring-boot-devtools</artifactId >
41+ <scope >runtime</scope >
42+ <optional >true</optional >
43+ </dependency >
44+ <dependency >
45+ <groupId >org.springframework.boot</groupId >
46+ <artifactId >spring-boot-configuration-processor</artifactId >
47+ <optional >true</optional >
48+ </dependency >
49+ <dependency >
50+ <groupId >org.projectlombok</groupId >
51+ <artifactId >lombok</artifactId >
52+ <optional >true</optional >
53+ </dependency >
54+ <dependency >
55+ <groupId >org.springframework.boot</groupId >
56+ <artifactId >spring-boot-starter-test</artifactId >
57+ <scope >test</scope >
58+ </dependency >
59+ </dependencies >
60+
61+
2762</project >
0 commit comments