Add customized banner and update maven dependencies.
This commit is contained in:
50
pom.xml
50
pom.xml
@@ -21,13 +21,13 @@
|
|||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
<java.version>1.8</java.version>
|
<java.version>11</java.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<!-- ************* -->
|
<!-- ************************ -->
|
||||||
<!-- Spring boot -->
|
<!-- Spring boot dependencies -->
|
||||||
<!-- ************* -->
|
<!-- ************************ -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
||||||
@@ -53,12 +53,21 @@
|
|||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- ************ -->
|
||||||
|
<!-- Dependencies -->
|
||||||
|
<!-- ************ -->
|
||||||
|
<!-- TODO: Replace this old one -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>commons-lang</groupId>
|
||||||
|
<artifactId>commons-lang</artifactId>
|
||||||
|
<version>2.3</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.commons</groupId>
|
||||||
|
<artifactId>commons-lang3</artifactId>
|
||||||
|
<version>3.9</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
|
||||||
<!-- <dependency>-->
|
|
||||||
<!-- <groupId>com.fasterxml.jackson.core</groupId>-->
|
|
||||||
<!-- <artifactId>jackson-annotations</artifactId>-->
|
|
||||||
<!-- </dependency>-->
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.mindrot</groupId>
|
<groupId>org.mindrot</groupId>
|
||||||
<artifactId>jbcrypt</artifactId>
|
<artifactId>jbcrypt</artifactId>
|
||||||
@@ -67,24 +76,15 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.postgresql</groupId>
|
<groupId>org.postgresql</groupId>
|
||||||
<artifactId>postgresql</artifactId>
|
<artifactId>postgresql</artifactId>
|
||||||
<scope>runtime</scope>
|
<version>42.2.6</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<!-- ***************** -->
|
||||||
<groupId>commons-lang</groupId>
|
<!-- Test dependencies -->
|
||||||
<artifactId>commons-lang</artifactId>
|
<!-- ***************** -->
|
||||||
<version>2.3</version>
|
|
||||||
</dependency>
|
|
||||||
<!-- https://mvnrepository.com/artifact/commons-lang/commons-lang -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.apache.commons</groupId>
|
|
||||||
<artifactId>commons-lang3</artifactId>
|
|
||||||
<version>3.7</version>
|
|
||||||
</dependency>
|
|
||||||
<!-- https://mvnrepository.com/artifact/org.mockito/mockito-all -->
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.mockito</groupId>
|
<groupId>org.mockito</groupId>
|
||||||
<artifactId>mockito-all</artifactId>
|
<artifactId>mockito-core</artifactId>
|
||||||
<version>1.9.5</version>
|
<version>3.0.0</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
@@ -101,7 +101,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
<version>2.22.1</version>
|
<version>2.22.2</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<useSystemClassLoader>false</useSystemClassLoader>
|
<useSystemClassLoader>false</useSystemClassLoader>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|||||||
12
src/main/resources/banner.txt
Normal file
12
src/main/resources/banner.txt
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
#######
|
||||||
|
##############
|
||||||
|
###################
|
||||||
|
######## ######### _________ .___.__ __ .__
|
||||||
|
####### ############# \_ ___ \ ____ __| _/|__| | _|__|
|
||||||
|
###### ### ######## / \ \/ / _ \ / __ | | | |/ / |
|
||||||
|
####### ### ##### \ \___( <_> ) /_/ | | | <| |
|
||||||
|
######### ## ####### \______ /\____/\____ | |__|__|_ \__|
|
||||||
|
######### ######## \/ \/ \/
|
||||||
|
###################
|
||||||
|
#############
|
||||||
|
#######
|
||||||
Reference in New Issue
Block a user