fix custom starter setup

This commit is contained in:
Loredana Crusoveanu 2018-10-20 22:02:24 +03:00
parent 6319eb836f
commit cf56156f33
1 changed files with 32 additions and 2 deletions

View File

@ -7,11 +7,23 @@
<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>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
@ -19,9 +31,27 @@
<artifactId>greeter-spring-boot-starter</artifactId>
<version>${greeter-starter.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<properties>
<spring-boot.version>1.5.15.RELEASE</spring-boot.version>
<greeter-starter.version>0.0.1-SNAPSHOT</greeter-starter.version>
</properties>