CHANGED: name of module for Spring Boot 2.2

This commit is contained in:
Joel Juarez 2019-06-03 00:36:37 +02:00
parent 238e75eec9
commit dfeadea6ae
6 changed files with 7 additions and 8 deletions

View File

@ -1,2 +1 @@
This is a parent module for all projects using Spring Boot 2.2. This is a parent module for all projects using Spring Boot 2.2.

View File

@ -1,9 +1,9 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>parent-boot-2-2</artifactId> <artifactId>parent-boot-performance</artifactId>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1-SNAPSHOT</version>
<name>parent-boot-2-2</name> <name>parent-boot-performance</name>
<packaging>pom</packaging> <packaging>pom</packaging>
<description>Parent for all Spring Boot 2.2 modules</description> <description>Parent for all Spring Boot 2.2 modules</description>

View File

@ -2,16 +2,16 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>spring-boot-2-2</artifactId> <artifactId>spring-boot-performance</artifactId>
<name>spring-boot-2-2</name> <name>spring-boot-performance</name>
<packaging>war</packaging> <packaging>war</packaging>
<description>This is simple boot application for Spring boot 2.2</description> <description>This is simple boot application for Spring boot 2.2</description>
<parent> <parent>
<artifactId>parent-boot-2-2</artifactId> <artifactId>parent-boot-performance</artifactId>
<groupId>com.baeldung</groupId> <groupId>com.baeldung</groupId>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1-SNAPSHOT</version>
<relativePath>../parent-boot-2-2</relativePath> <relativePath>../parent-boot-performance</relativePath>
</parent> </parent>
<dependencies> <dependencies>
@ -22,7 +22,7 @@
</dependencies> </dependencies>
<build> <build>
<finalName>spring-boot-2-2</finalName> <finalName>spring-boot-performance</finalName>
<resources> <resources>
<resource> <resource>
<directory>src/main/resources</directory> <directory>src/main/resources</directory>