Skip to content

Commit 8f0d87a

Browse files
committed
Rename spring-boot-starter-aop to spring-boot-starter-aspectj
Closes gh-42948
1 parent d183ab4 commit 8f0d87a

File tree

12 files changed

+20
-20
lines changed

12 files changed

+20
-20
lines changed

platform/spring-boot-dependencies/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2078,8 +2078,8 @@ bom {
20782078
"spring-boot-starter-activemq",
20792079
"spring-boot-starter-actuator",
20802080
"spring-boot-starter-amqp",
2081-
"spring-boot-starter-aop",
20822081
"spring-boot-starter-artemis",
2082+
"spring-boot-starter-aspectj",
20832083
"spring-boot-starter-batch",
20842084
"spring-boot-starter-cassandra",
20852085
"spring-boot-starter-cache",

settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ include "starter:spring-boot-starter"
177177
include "starter:spring-boot-starter-activemq"
178178
include "starter:spring-boot-starter-actuator"
179179
include "starter:spring-boot-starter-amqp"
180-
include "starter:spring-boot-starter-aop"
181180
include "starter:spring-boot-starter-artemis"
181+
include "starter:spring-boot-starter-aspectj"
182182
include "starter:spring-boot-starter-batch"
183183
include "starter:spring-boot-starter-cache"
184184
include "starter:spring-boot-starter-cassandra"
@@ -290,8 +290,8 @@ include ":smoke-test:spring-boot-smoke-test-actuator-noweb"
290290
include ":smoke-test:spring-boot-smoke-test-actuator-ui"
291291
include ":smoke-test:spring-boot-smoke-test-amqp"
292292
include ":smoke-test:spring-boot-smoke-test-ant"
293-
include ":smoke-test:spring-boot-smoke-test-aop"
294293
include ":smoke-test:spring-boot-smoke-test-artemis"
294+
include ":smoke-test:spring-boot-smoke-test-aspectj"
295295
include ":smoke-test:spring-boot-smoke-test-autoconfigure-classic"
296296
include ":smoke-test:spring-boot-smoke-test-batch"
297297
include ":smoke-test:spring-boot-smoke-test-bootstrap-registry"

smoke-test/spring-boot-smoke-test-aop/build.gradle renamed to smoke-test/spring-boot-smoke-test-aspectj/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ plugins {
1818
id "java"
1919
}
2020

21-
description = "Spring Boot AOP smoke test"
21+
description = "Spring Boot AspectJ smoke test"
2222

2323
dependencies {
24-
implementation(project(":starter:spring-boot-starter-aop"))
24+
implementation(project(":starter:spring-boot-starter-aspectj"))
2525

2626
testImplementation(project(":starter:spring-boot-starter-test"))
2727
}

smoke-test/spring-boot-smoke-test-aop/src/main/java/smoketest/aop/SampleAopApplication.java renamed to smoke-test/spring-boot-smoke-test-aspectj/src/main/java/smoketest/aspectj/SampleAspectJApplication.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@
1414
* limitations under the License.
1515
*/
1616

17-
package smoketest.aop;
17+
package smoketest.aspectj;
1818

19-
import smoketest.aop.service.HelloWorldService;
19+
import smoketest.aspectj.service.HelloWorldService;
2020

2121
import org.springframework.beans.factory.annotation.Autowired;
2222
import org.springframework.boot.CommandLineRunner;
2323
import org.springframework.boot.SpringApplication;
2424
import org.springframework.boot.autoconfigure.SpringBootApplication;
2525

2626
@SpringBootApplication
27-
public class SampleAopApplication implements CommandLineRunner {
27+
public class SampleAspectJApplication implements CommandLineRunner {
2828

2929
// Simple example shows how an application can spy on itself with AOP
3030

@@ -37,7 +37,7 @@ public void run(String... args) {
3737
}
3838

3939
public static void main(String[] args) {
40-
SpringApplication.run(SampleAopApplication.class, args);
40+
SpringApplication.run(SampleAspectJApplication.class, args);
4141
}
4242

4343
}

smoke-test/spring-boot-smoke-test-aop/src/main/java/smoketest/aop/monitor/ServiceMonitor.java renamed to smoke-test/spring-boot-smoke-test-aspectj/src/main/java/smoketest/aspectj/monitor/ServiceMonitor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package smoketest.aop.monitor;
17+
package smoketest.aspectj.monitor;
1818

1919
import org.aspectj.lang.JoinPoint;
2020
import org.aspectj.lang.annotation.AfterReturning;

smoke-test/spring-boot-smoke-test-aop/src/main/java/smoketest/aop/service/package-info.java renamed to smoke-test/spring-boot-smoke-test-aspectj/src/main/java/smoketest/aspectj/monitor/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
*/
1616

1717
@NullMarked
18-
package smoketest.aop.service;
18+
package smoketest.aspectj.monitor;
1919

2020
import org.jspecify.annotations.NullMarked;

smoke-test/spring-boot-smoke-test-aop/src/main/java/smoketest/aop/package-info.java renamed to smoke-test/spring-boot-smoke-test-aspectj/src/main/java/smoketest/aspectj/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
*/
1616

1717
@NullMarked
18-
package smoketest.aop;
18+
package smoketest.aspectj;
1919

2020
import org.jspecify.annotations.NullMarked;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package smoketest.aop.service;
17+
package smoketest.aspectj.service;
1818

1919
import org.springframework.beans.factory.annotation.Value;
2020
import org.springframework.stereotype.Component;

smoke-test/spring-boot-smoke-test-aop/src/main/java/smoketest/aop/monitor/package-info.java renamed to smoke-test/spring-boot-smoke-test-aspectj/src/main/java/smoketest/aspectj/service/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
*/
1616

1717
@NullMarked
18-
package smoketest.aop.monitor;
18+
package smoketest.aspectj.service;
1919

2020
import org.jspecify.annotations.NullMarked;

0 commit comments

Comments
 (0)