File tree Expand file tree Collapse file tree 6 files changed +108
-0
lines changed
java/com/xkcoding/graylog
test/java/com/xkcoding/graylog Expand file tree Collapse file tree 6 files changed +108
-0
lines changed Original file line number Diff line number Diff line change 6161 <module >spring-boot-demo-sharding-jdbc</module >
6262 <module >spring-boot-demo-tio</module >
6363 <module >spring-boot-demo-codegen</module >
64+ <module >spring-boot-demo-graylog</module >
6465 </modules >
6566 <packaging >pom</packaging >
6667
Original file line number Diff line number Diff line change 1+ HELP.md
2+ /target /
3+ ! .mvn /wrapper /maven-wrapper.jar
4+
5+ # ## STS ###
6+ .apt_generated
7+ .classpath
8+ .factorypath
9+ .project
10+ .settings
11+ .springBeans
12+ .sts4-cache
13+
14+ # ## IntelliJ IDEA ###
15+ .idea
16+ * .iws
17+ * .iml
18+ * .ipr
19+
20+ # ## NetBeans ###
21+ /nbproject /private /
22+ /nbbuild /
23+ /dist /
24+ /nbdist /
25+ /.nb-gradle /
26+ /build /
27+
28+ # ## VS Code ###
29+ .vscode /
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+
6+ <artifactId >spring-boot-demo-task</artifactId >
7+ <version >1.0.0-SNAPSHOT</version >
8+ <packaging >jar</packaging >
9+
10+ <name >spring-boot-demo-graylog</name >
11+ <description >Demo project for Spring Boot</description >
12+
13+ <parent >
14+ <groupId >com.xkcoding</groupId >
15+ <artifactId >spring-boot-demo</artifactId >
16+ <version >1.0.0-SNAPSHOT</version >
17+ </parent >
18+
19+ <properties >
20+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
21+ <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
22+ <java .version>1.8</java .version>
23+ </properties >
24+
25+ <dependencies >
26+ <dependency >
27+ <groupId >org.springframework.boot</groupId >
28+ <artifactId >spring-boot-starter-web</artifactId >
29+ </dependency >
30+
31+ <dependency >
32+ <groupId >org.springframework.boot</groupId >
33+ <artifactId >spring-boot-starter-test</artifactId >
34+ <scope >test</scope >
35+ </dependency >
36+ </dependencies >
37+
38+ <build >
39+ <finalName >spring-boot-demo-graylog</finalName >
40+ <plugins >
41+ <plugin >
42+ <groupId >org.springframework.boot</groupId >
43+ <artifactId >spring-boot-maven-plugin</artifactId >
44+ </plugin >
45+ </plugins >
46+ </build >
47+
48+ </project >
Original file line number Diff line number Diff line change 1+ package com .xkcoding .graylog ;
2+
3+ import org .springframework .boot .SpringApplication ;
4+ import org .springframework .boot .autoconfigure .SpringBootApplication ;
5+
6+ @ SpringBootApplication
7+ public class SpringBootDemoGraylogApplication {
8+
9+ public static void main (String [] args ) {
10+ SpringApplication .run (SpringBootDemoGraylogApplication .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 .xkcoding .graylog ;
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 SpringBootDemoGraylogApplicationTests {
11+
12+ @ Test
13+ public void contextLoads () {
14+ }
15+
16+ }
You can’t perform that action at this time.
0 commit comments