Skip to content

Commit 5146069

Browse files
committed
fixed build
1 parent 01b0ef3 commit 5146069

File tree

5 files changed

+16
-0
lines changed

5 files changed

+16
-0
lines changed

build-all.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ build_maven_module() {
5454
}
5555
}
5656

57+
build_maven_module "spring-boot/dependency-injection"
5758
build_maven_module "spring-boot/spring-boot-openapi"
5859
build_gradle_module "spring-boot/boundaries"
5960
build_gradle_module "spring-boot/argumentresolver"
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package com.example;
2+
3+
import org.springframework.boot.SpringApplication;
4+
import org.springframework.boot.autoconfigure.SpringBootApplication;
5+
import org.springframework.context.ApplicationContext;
6+
7+
8+
@SpringBootApplication(scanBasePackages = { "com.example.dependency" })
9+
public class ExampleApplication {
10+
11+
public static void main(String[] args) {
12+
ApplicationContext context = SpringApplication.run(ExampleApplication.class, args);
13+
}
14+
15+
}

spring-boot/dependency-injection/src/main/java/com/example/ExampleApplicationCI.java renamed to spring-boot/dependency-injection/src/test/java/com/example/ExampleApplicationCI.java

File renamed without changes.

spring-boot/dependency-injection/src/main/java/com/example/ExampleApplicationFI.java renamed to spring-boot/dependency-injection/src/test/java/com/example/ExampleApplicationFI.java

File renamed without changes.

spring-boot/dependency-injection/src/main/java/com/example/ExampleApplicationSI.java renamed to spring-boot/dependency-injection/src/test/java/com/example/ExampleApplicationSI.java

File renamed without changes.

0 commit comments

Comments
 (0)