File tree Expand file tree Collapse file tree 5 files changed +60
-0
lines changed Expand file tree Collapse file tree 5 files changed +60
-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
+
6
+ <groupId >com.example</groupId >
7
+ <artifactId >spring-boot-banner</artifactId >
8
+ <version >2.0.0</version >
9
+ <packaging >jar</packaging >
10
+
11
+ <name >Spring Boot banner</name >
12
+ <description >A very useful project to demonstrate animated gif support in Spring Boot 2</description >
13
+
14
+ <parent >
15
+ <groupId >org.springframework.boot</groupId >
16
+ <artifactId >spring-boot-starter-parent</artifactId >
17
+ <version >2.0.0.RELEASE</version >
18
+ </parent >
19
+
20
+ <properties >
21
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
22
+ <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
23
+ <java .version>1.8</java .version>
24
+ </properties >
25
+
26
+ <dependencies >
27
+ <dependency >
28
+ <groupId >org.springframework.boot</groupId >
29
+ <artifactId >spring-boot-starter</artifactId >
30
+ </dependency >
31
+ </dependencies >
32
+
33
+ <build >
34
+ <plugins >
35
+ <plugin >
36
+ <groupId >org.springframework.boot</groupId >
37
+ <artifactId >spring-boot-maven-plugin</artifactId >
38
+ </plugin >
39
+ </plugins >
40
+ </build >
41
+
42
+ </project >
Original file line number Diff line number Diff line change
1
+ package com .neo .banner ;
2
+
3
+ import org .springframework .boot .SpringApplication ;
4
+ import org .springframework .boot .autoconfigure .SpringBootApplication ;
5
+
6
+ @ SpringBootApplication
7
+ public class BannerApplication {
8
+
9
+ public static void main (String [] args ) {
10
+ SpringApplication .run (BannerApplication .class , args );
11
+ }
12
+ }
Original file line number Diff line number Diff line change
1
+ .__ .__ .__ .__ .___
2
+ | |__ ____ | | | | ____ __ _ _____________| | __| _/
3
+ | | \_/ __ \| | | | / _ \ \ \/ \/ / _ \_ __ \ | / __ |
4
+ | Y \ ___/| |_| |_( <_> ) \ ( <_> ) | \/ |__/ /_/ |
5
+ |___| /\___ >____/____/\____/ \/\_/ \____/|__| |____/\____ |
6
+ \/ \/ \/
You can’t perform that action at this time.
0 commit comments