Hotfix/bael 1271 (#2948)
* BAEL-1271 - added parent-boot-5 as parent * BAEL-1271 - update README
This commit is contained in:
parent
73ae3cfb1a
commit
2a18104f3c
|
@ -1 +1,17 @@
|
||||||
Spring Boot Admin
|
## 1. Spring Boot Admin Server
|
||||||
|
|
||||||
|
* mvn clean install
|
||||||
|
* mvn spring-boot:run
|
||||||
|
* starts on port 8080
|
||||||
|
* login with admin/admin
|
||||||
|
* to activate mail notifications uncomment the starter mail dependency
|
||||||
|
and the mail configuration from application.properties
|
||||||
|
* add some real credentials if you want the app to send emails
|
||||||
|
* to activate Hipchat notifications proceed same as for email
|
||||||
|
|
||||||
|
## 2. Spring Boot App Client
|
||||||
|
|
||||||
|
* mvn clean install
|
||||||
|
* mvn spring-boot:run
|
||||||
|
* starts on port 8081
|
||||||
|
* basic auth client/client
|
|
@ -3,19 +3,18 @@
|
||||||
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>
|
||||||
|
|
||||||
<groupId>com.baeldung</groupId>
|
|
||||||
<artifactId>spring-boot-admin-client</artifactId>
|
<artifactId>spring-boot-admin-client</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>spring-boot-admin-client</name>
|
<name>spring-boot-admin-client</name>
|
||||||
<description>Demo project for Spring Boot</description>
|
<description>Spring Boot Admin Client</description>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<artifactId>parent-boot-5</artifactId>
|
||||||
<artifactId>spring-boot-starter-parent</artifactId>
|
<groupId>com.baeldung</groupId>
|
||||||
<version>1.5.8.RELEASE</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
<relativePath/> <!-- lookup parent from repository -->
|
<relativePath>../../parent-boot-5</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|
|
@ -3,19 +3,18 @@
|
||||||
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>
|
||||||
|
|
||||||
<groupId>com.baeldung</groupId>
|
|
||||||
<artifactId>spring-boot-admin-server</artifactId>
|
<artifactId>spring-boot-admin-server</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>spring-boot-admin-server</name>
|
<name>spring-boot-admin-server</name>
|
||||||
<description>Demo project for Spring Boot</description>
|
<description>Spring Boot Admin Server</description>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<artifactId>parent-boot-5</artifactId>
|
||||||
<artifactId>spring-boot-starter-parent</artifactId>
|
<groupId>com.baeldung</groupId>
|
||||||
<version>1.5.8.RELEASE</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
<relativePath/> <!-- lookup parent from repository -->
|
<relativePath>../../parent-boot-5</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|
Loading…
Reference in New Issue