File tree Expand file tree Collapse file tree 4 files changed +67
-0
lines changed
java/com/lazycece/sbac/task
test/java/com/lazycece/sbac/task Expand file tree Collapse file tree 4 files changed +67
-0
lines changed Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3+ xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4+ <modelVersion >4.0.0</modelVersion >
5+ <parent >
6+ <groupId >com.lazycece</groupId >
7+ <artifactId >springboot-actual-combat</artifactId >
8+ <version >0.0.1-SNAPSHOT</version >
9+ </parent >
10+ <artifactId >springboot-ac-task</artifactId >
11+ <version >0.0.1-SNAPSHOT</version >
12+ <name >springboot-ac-task</name >
13+ <description >Demo project for Spring Boot</description >
14+
15+ <dependencies >
16+ <dependency >
17+ <groupId >org.springframework.boot</groupId >
18+ <artifactId >spring-boot-starter</artifactId >
19+ </dependency >
20+
21+ <dependency >
22+ <groupId >org.springframework.boot</groupId >
23+ <artifactId >spring-boot-starter-test</artifactId >
24+ <scope >test</scope >
25+ </dependency >
26+ </dependencies >
27+
28+ <build >
29+ <plugins >
30+ <plugin >
31+ <groupId >org.springframework.boot</groupId >
32+ <artifactId >spring-boot-maven-plugin</artifactId >
33+ </plugin >
34+ </plugins >
35+ </build >
36+
37+ </project >
Original file line number Diff line number Diff line change 1+ package com .lazycece .sbac .task ;
2+
3+ import org .springframework .boot .SpringApplication ;
4+ import org .springframework .boot .autoconfigure .SpringBootApplication ;
5+
6+ @ SpringBootApplication
7+ public class SpringbootAcTaskApplication {
8+
9+ public static void main (String [] args ) {
10+ SpringApplication .run (SpringbootAcTaskApplication .class , args );
11+ }
12+
13+ }
Original file line number Diff line number Diff line change 1+
Original file line number Diff line number Diff line change 1+ package com .lazycece .sbac .task ;
2+
3+ import org .junit .Test ;
4+ import org .junit .runner .RunWith ;
5+ import org .springframework .boot .test .context .SpringBootTest ;
6+ import org .springframework .test .context .junit4 .SpringRunner ;
7+
8+ @ RunWith (SpringRunner .class )
9+ @ SpringBootTest
10+ public class SpringbootAcTaskApplicationTests {
11+
12+ @ Test
13+ public void contextLoads () {
14+ }
15+
16+ }
You can’t perform that action at this time.
0 commit comments