BAEL-1776: Add description and change module name (#4607)

* Add description and change module name

* Fix mvn parent in spring-boot-custom-starter
This commit is contained in:
Felipe Santiago Corro
2018-07-06 01:27:12 -03:00
committed by KevinGilmore
parent 59277b4339
commit bebaf6d339
13 changed files with 34 additions and 20 deletions

View File

@@ -5,12 +5,14 @@
<groupId>com.baeldung</groupId>
<artifactId>greeter-spring-boot-autoconfigure</artifactId>
<version>0.0.1-SNAPSHOT</version>
<parent>
<artifactId>parent-boot-1</artifactId>
<artifactId>spring-boot-custom-starter</artifactId>
<groupId>com.baeldung</groupId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../parent-boot-1</relativePath>
<relativePath>../../spring-boot-custom-starter</relativePath>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring-boot.version>1.5.2.RELEASE</spring-boot.version>
@@ -40,7 +42,7 @@
<dependency>
<groupId>com.baeldung</groupId>
<artifactId>greeter</artifactId>
<artifactId>greeter-library</artifactId>
<version>${greeter.version}</version>
<optional>true</optional>
</dependency>

View File

@@ -1,6 +1,6 @@
package com.baeldung.greeter.autoconfigure;
import static com.baeldung.greeter.GreeterConfigParams.*;
import static com.baeldung.greeter.library.GreeterConfigParams.*;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
@@ -9,8 +9,8 @@ import org.springframework.boot.context.properties.EnableConfigurationProperties
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import com.baeldung.greeter.Greeter;
import com.baeldung.greeter.GreetingConfig;
import com.baeldung.greeter.library.Greeter;
import com.baeldung.greeter.library.GreetingConfig;
@Configuration
@ConditionalOnClass(Greeter.class)