Hotfix/bael 1271 (#2953)

* BAEL-1271 - added parent-boot-5 as parent

* BAEL-1271 - update README

* BAEL-1271 - created spring-boot-admin module
This commit is contained in:
Bogdan Stoean 2017-11-04 10:03:05 +02:00 committed by Eugen
parent 2a18104f3c
commit 7bc6714340
2 changed files with 24 additions and 0 deletions

View File

@ -256,6 +256,7 @@
<module>vertx-and-rxjava</module>
<module>saas</module>
<module>deeplearning4j</module>
<module>spring-boot-admin</module>
</modules>
<dependencies>

23
spring-boot-admin/pom.xml Normal file
View File

@ -0,0 +1,23 @@
<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">
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-boot-admin</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<module>spring-boot-admin-server</module>
<module>spring-boot-admin-client</module>
</modules>
</project>