Skip to content

Commit 677a183

Browse files
committed
m
1 parent d7736bb commit 677a183

File tree

5 files changed

+60
-0
lines changed

5 files changed

+60
-0
lines changed

spring-boot-banner/pom.xml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+
}

spring-boot-banner/src/main/resources/application.properties

Whitespace-only changes.
Loading
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.__ .__ .__ .__ .___
2+
| |__ ____ | | | | ____ __ _ _____________| | __| _/
3+
| | \_/ __ \| | | | / _ \ \ \/ \/ / _ \_ __ \ | / __ |
4+
| Y \ ___/| |_| |_( <_> ) \ ( <_> ) | \/ |__/ /_/ |
5+
|___| /\___ >____/____/\____/ \/\_/ \____/|__| |____/\____ |
6+
\/ \/ \/

0 commit comments

Comments
 (0)