File tree Expand file tree Collapse file tree 6 files changed +130
-42
lines changed
example-spring-native-demo
src/test/java/io/github/toquery/example/spring/nativex
example-spring-native-mqtt
example-spring-native-mybatis-plus
example-spring-native-mybatis Expand file tree Collapse file tree 6 files changed +130
-42
lines changed Original file line number Diff line number Diff line change 1111
1212 <artifactId >example-spring-native-demo</artifactId >
1313
14+ <dependencies >
15+
16+ <dependency >
17+ <groupId >org.springframework.boot</groupId >
18+ <artifactId >spring-boot-starter-web</artifactId >
19+ </dependency >
20+
21+ <dependency >
22+ <groupId >org.springframework.boot</groupId >
23+ <artifactId >spring-boot-starter-actuator</artifactId >
24+ </dependency >
25+
26+ <dependency >
27+ <groupId >org.springframework.boot</groupId >
28+ <artifactId >spring-boot-devtools</artifactId >
29+ <scope >runtime</scope >
30+ <optional >true</optional >
31+ </dependency >
32+
33+ <dependency >
34+ <groupId >org.springframework.boot</groupId >
35+ <artifactId >spring-boot-configuration-processor</artifactId >
36+ <optional >true</optional >
37+ </dependency >
38+ <dependency >
39+ <groupId >org.projectlombok</groupId >
40+ <artifactId >lombok</artifactId >
41+ <optional >true</optional >
42+ </dependency >
43+ <dependency >
44+ <groupId >org.springframework.boot</groupId >
45+ <artifactId >spring-boot-starter-test</artifactId >
46+ <scope >test</scope >
47+ </dependency >
48+ <dependency >
49+ <groupId >io.micrometer</groupId >
50+ <artifactId >micrometer-registry-prometheus</artifactId >
51+ <scope >runtime</scope >
52+ </dependency >
53+
54+ </dependencies >
1455
1556 <build >
1657 <plugins >
Original file line number Diff line number Diff line change 11package io .github .toquery .example .spring .nativex ;
22
3+ import io .github .toquery .example .spring .nativex .nativex .ExampleSpringNativeDemoApplication ;
34import org .junit .jupiter .api .Test ;
45import org .springframework .boot .test .context .SpringBootTest ;
56
6- @ SpringBootTest
7+ @ SpringBootTest ( classes = ExampleSpringNativeDemoApplication . class )
78class ExampleSpringNativeApplicationTests {
89
910 @ Test
Original file line number Diff line number Diff line change 1111
1212 <artifactId >example-spring-native-mqtt</artifactId >
1313
14+ <dependencies >
15+
16+ <dependency >
17+ <groupId >org.springframework.boot</groupId >
18+ <artifactId >spring-boot-starter-web</artifactId >
19+ </dependency >
20+
21+ <dependency >
22+ <groupId >org.springframework.boot</groupId >
23+ <artifactId >spring-boot-starter-actuator</artifactId >
24+ </dependency >
25+
26+ <dependency >
27+ <groupId >org.springframework.boot</groupId >
28+ <artifactId >spring-boot-devtools</artifactId >
29+ <scope >runtime</scope >
30+ <optional >true</optional >
31+ </dependency >
32+
33+ <dependency >
34+ <groupId >org.springframework.boot</groupId >
35+ <artifactId >spring-boot-configuration-processor</artifactId >
36+ <optional >true</optional >
37+ </dependency >
38+ <dependency >
39+ <groupId >org.projectlombok</groupId >
40+ <artifactId >lombok</artifactId >
41+ <optional >true</optional >
42+ </dependency >
43+ <dependency >
44+ <groupId >org.springframework.boot</groupId >
45+ <artifactId >spring-boot-starter-test</artifactId >
46+ <scope >test</scope >
47+ </dependency >
48+
49+ </dependencies >
50+
1451 <build >
1552 <plugins >
1653 <plugin >
Original file line number Diff line number Diff line change 3636 <scope >runtime</scope >
3737 </dependency >
3838
39+ <dependency >
40+ <groupId >org.springframework.boot</groupId >
41+ <artifactId >spring-boot-devtools</artifactId >
42+ <scope >runtime</scope >
43+ <optional >true</optional >
44+ </dependency >
45+
46+ <dependency >
47+ <groupId >org.springframework.boot</groupId >
48+ <artifactId >spring-boot-configuration-processor</artifactId >
49+ <optional >true</optional >
50+ </dependency >
51+ <dependency >
52+ <groupId >org.projectlombok</groupId >
53+ <artifactId >lombok</artifactId >
54+ <optional >true</optional >
55+ </dependency >
56+ <dependency >
57+ <groupId >org.springframework.boot</groupId >
58+ <artifactId >spring-boot-starter-test</artifactId >
59+ <scope >test</scope >
60+ </dependency >
61+
3962 </dependencies >
4063
4164 <build >
Original file line number Diff line number Diff line change 3636 <scope >runtime</scope >
3737 </dependency >
3838
39+ <dependency >
40+ <groupId >org.springframework.boot</groupId >
41+ <artifactId >spring-boot-devtools</artifactId >
42+ <scope >runtime</scope >
43+ <optional >true</optional >
44+ </dependency >
45+
46+ <dependency >
47+ <groupId >org.springframework.boot</groupId >
48+ <artifactId >spring-boot-configuration-processor</artifactId >
49+ <optional >true</optional >
50+ </dependency >
51+ <dependency >
52+ <groupId >org.projectlombok</groupId >
53+ <artifactId >lombok</artifactId >
54+ <optional >true</optional >
55+ </dependency >
56+ <dependency >
57+ <groupId >org.springframework.boot</groupId >
58+ <artifactId >spring-boot-starter-test</artifactId >
59+ <scope >test</scope >
60+ </dependency >
61+ <dependency >
62+ <groupId >org.postgresql</groupId >
63+ <artifactId >postgresql</artifactId >
64+ <scope >runtime</scope >
65+ </dependency >
3966 </dependencies >
4067
4168 <build >
Original file line number Diff line number Diff line change 3030 <module >example-spring-native-mqtt</module >
3131 </modules >
3232
33- <dependencies >
3433
35- <dependency >
36- <groupId >org.springframework.boot</groupId >
37- <artifactId >spring-boot-starter-web</artifactId >
38- </dependency >
39-
40- <dependency >
41- <groupId >org.springframework.boot</groupId >
42- <artifactId >spring-boot-starter-actuator</artifactId >
43- </dependency >
44-
45- <dependency >
46- <groupId >org.springframework.boot</groupId >
47- <artifactId >spring-boot-devtools</artifactId >
48- <scope >runtime</scope >
49- <optional >true</optional >
50- </dependency >
51- <dependency >
52- <groupId >org.springframework.boot</groupId >
53- <artifactId >spring-boot-docker-compose</artifactId >
54- <scope >runtime</scope >
55- <optional >true</optional >
56- </dependency >
57-
58- <dependency >
59- <groupId >org.springframework.boot</groupId >
60- <artifactId >spring-boot-configuration-processor</artifactId >
61- <optional >true</optional >
62- </dependency >
63- <dependency >
64- <groupId >org.projectlombok</groupId >
65- <artifactId >lombok</artifactId >
66- <optional >true</optional >
67- </dependency >
68- <dependency >
69- <groupId >org.springframework.boot</groupId >
70- <artifactId >spring-boot-starter-test</artifactId >
71- <scope >test</scope >
72- </dependency >
73-
74- </dependencies >
7534
7635 <dependencyManagement >
7736 <dependencies >
You can’t perform that action at this time.
0 commit comments