diff --git a/3.x/spring-boot-banner/pom.xml b/3.x/spring-boot-banner/pom.xml new file mode 100644 index 0000000..df6faf7 --- /dev/null +++ b/3.x/spring-boot-banner/pom.xml @@ -0,0 +1,43 @@ + + + 4.0.0 + + com.example + spring-boot-banner + 3.0.0 + jar + + Spring Boot banner + A very useful project to demonstrate animated gif support in Spring Boot 2 + + + org.springframework.boot + spring-boot-starter-parent + 3.0.0-SNAPSHOT + + + + + UTF-8 + UTF-8 + 17 + + + + + org.springframework.boot + spring-boot-starter + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + diff --git a/3.x/spring-boot-banner/src/main/java/com/neo/banner/BannerApplication.java b/3.x/spring-boot-banner/src/main/java/com/neo/banner/BannerApplication.java new file mode 100644 index 0000000..4e7bc12 --- /dev/null +++ b/3.x/spring-boot-banner/src/main/java/com/neo/banner/BannerApplication.java @@ -0,0 +1,12 @@ +package com.neo.banner; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class BannerApplication { + + public static void main(String[] args) { + SpringApplication.run(BannerApplication.class, args); + } +} diff --git a/3.x/spring-boot-banner/src/main/resources/application.properties b/3.x/spring-boot-banner/src/main/resources/application.properties new file mode 100644 index 0000000..e69de29 diff --git a/3.x/spring-boot-banner/src/main/resources/banner.gif b/3.x/spring-boot-banner/src/main/resources/banner.gif new file mode 100644 index 0000000..73f3182 Binary files /dev/null and b/3.x/spring-boot-banner/src/main/resources/banner.gif differ diff --git a/3.x/spring-boot-banner/src/main/resources/banner.txt b/3.x/spring-boot-banner/src/main/resources/banner.txt new file mode 100644 index 0000000..79bcf75 --- /dev/null +++ b/3.x/spring-boot-banner/src/main/resources/banner.txt @@ -0,0 +1,6 @@ +.__ .__ .__ .__ .___ +| |__ ____ | | | | ____ __ _ _____________| | __| _/ +| | \_/ __ \| | | | / _ \ \ \/ \/ / _ \_ __ \ | / __ | +| Y \ ___/| |_| |_( <_> ) \ ( <_> ) | \/ |__/ /_/ | +|___| /\___ >____/____/\____/ \/\_/ \____/|__| |____/\____ | + \/ \/ \/ \ No newline at end of file