Commit 5078c498 by Johannes Edmeier

Remove Spring Boot logo and do the changes Brian proposed

parent cd3c7e10
spring-boot-admin codecentric's Spring Boot Admin
================= ===============================
[![Apache License 2](https://img.shields.io/badge/license-ASF2-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0.txt) [![Apache License 2](https://img.shields.io/badge/license-ASF2-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0.txt)
[![Build Status](https://travis-ci.org/codecentric/spring-boot-admin.svg?branch=master)](https://travis-ci.org/codecentric/spring-boot-admin) [![Build Status](https://travis-ci.org/codecentric/spring-boot-admin.svg?branch=master)](https://travis-ci.org/codecentric/spring-boot-admin)
[![Coverage Status](https://coveralls.io/repos/codecentric/spring-boot-admin/badge.svg)](https://coveralls.io/r/codecentric/spring-boot-admin) [![Coverage Status](https://coveralls.io/repos/codecentric/spring-boot-admin/badge.svg)](https://coveralls.io/r/codecentric/spring-boot-admin)
...@@ -7,9 +7,9 @@ spring-boot-admin ...@@ -7,9 +7,9 @@ spring-boot-admin
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/de.codecentric/spring-boot-admin/badge.svg)](https://maven-badges.herokuapp.com/maven-central/de.codecentric/spring-boot-admin/) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/de.codecentric/spring-boot-admin/badge.svg)](https://maven-badges.herokuapp.com/maven-central/de.codecentric/spring-boot-admin/)
[![Gitter](https://badges.gitter.im/codecentric/spring-boot-admin.svg)](https://gitter.im/codecentric/spring-boot-admin?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [![Gitter](https://badges.gitter.im/codecentric/spring-boot-admin.svg)](https://gitter.im/codecentric/spring-boot-admin?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
This is a simple admin interface for [Spring Boot](http://projects.spring.io/spring-boot/ "Official Spring-Boot website") applications. This community project provides an admin interface for [Spring Boot <sup>®</sup>](http://projects.spring.io/spring-boot/ "Official Spring-Boot website") applications.
This application provides a simple UI to administrate Spring Boot applications. It provides the following features for registered application. It provides the following features for registered application.
* Show health status * Show health status
* Show details, like * Show details, like
...@@ -27,7 +27,7 @@ This application provides a simple UI to administrate Spring Boot applications. ...@@ -27,7 +27,7 @@ This application provides a simple UI to administrate Spring Boot applications.
* View traces * View traces
* Hystrix-Dashboard integration * Hystrix-Dashboard integration
* Download heapdump * Download heapdump
* Notification on status change (via mail, Slack, Hipchat, ...) * Notification on status change (via e-mail, Slack, Hipchat, ...)
* Event journal of status changes (non persistent) * Event journal of status changes (non persistent)
## Getting Started ## Getting Started
...@@ -36,15 +36,15 @@ This application provides a simple UI to administrate Spring Boot applications. ...@@ -36,15 +36,15 @@ This application provides a simple UI to administrate Spring Boot applications.
## Getting Help ## Getting Help
Having trouble with Spring Boot Admin? We’d like to help! Having trouble with codecentric's Spring Boot Admin? We’d like to help!
* Check the [reference documentation](http://codecentric.github.io/spring-boot-admin/1.5.6/). * Check the [reference documentation](http://codecentric.github.io/spring-boot-admin/current/).
* Ask a question on [stackoverflow.com](http://stackoverflow.com/questions/tagged/spring-boot-admin) - we monitor questions tagged with `spring-boot-admin`. * Ask a question on [stackoverflow.com](http://stackoverflow.com/questions/tagged/spring-boot-admin) - we monitor questions tagged with `spring-boot-admin`.
* Ask for help in our [spring-boot-admin Gitter chat](https://gitter.im/codecentric/spring-boot-admin) * Ask for help in our [spring-boot-admin Gitter chat](https://gitter.im/codecentric/spring-boot-admin)
* Report bugs with Spring Boot Admin at http://github.com/codecentric/spring-boot-admin/issues. * Report bugs at http://github.com/codecentric/spring-boot-admin/issues.
## Reference Guide ## Reference Guide
[Version 1.5.6](http://codecentric.github.io/spring-boot-admin/1.5.6/) [Version 1.5.6](http://codecentric.github.io/spring-boot-admin/1.5.6/)
...@@ -53,6 +53,11 @@ Having trouble with Spring Boot Admin? We’d like to help! ...@@ -53,6 +53,11 @@ Having trouble with Spring Boot Admin? We’d like to help!
[Version 1.3.7](http://codecentric.github.io/spring-boot-admin/1.3.7/) [Version 1.3.7](http://codecentric.github.io/spring-boot-admin/1.3.7/)
## Trademarks and licenses
The source code of codecentric's Spring Boot Admin is licensed under [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0)
Spring, Spring Boot and Spring Cloud are trademarks of [Pivotal Software, Inc.](https://pivotal.io/) in the U.S. and other countries.
## Screenshots ## Screenshots
![Screenshot application list](/images/screenshot.png?raw=true) ![Screenshot application list](/images/screenshot.png?raw=true)
......
<?xml version="1.0"?>
<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>codecentric-spring-boot-admin-starter-client</artifactId>
<parent>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-build</artifactId>
<version>${revision}</version>
<relativePath>../spring-boot-admin-build</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-client</artifactId>
</dependency>
</dependencies>
</project>
\ No newline at end of file
...@@ -56,9 +56,8 @@ ...@@ -56,9 +56,8 @@
<module>spring-boot-admin-dependencies</module> <module>spring-boot-admin-dependencies</module>
<module>spring-boot-admin-docs</module> <module>spring-boot-admin-docs</module>
<module>spring-boot-admin-build</module> <module>spring-boot-admin-build</module>
<module>spring-boot-admin-starter-server</module>
<module>spring-boot-admin-starter-client</module> <module>spring-boot-admin-starter-client</module>
<module>codecentric-spring-boot-admin-starter-server</module>
<module>codecentric-spring-boot-admin-starter-client</module>
<module>spring-boot-admin-samples</module> <module>spring-boot-admin-samples</module>
</modules> </modules>
<organization> <organization>
......
...@@ -54,12 +54,12 @@ ...@@ -54,12 +54,12 @@
</dependency> </dependency>
<dependency> <dependency>
<groupId>de.codecentric</groupId> <groupId>de.codecentric</groupId>
<artifactId>codecentric-spring-boot-admin-starter-client</artifactId> <artifactId>spring-boot-admin-starter-client</artifactId>
<version>${revision}</version> <version>${revision}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>de.codecentric</groupId> <groupId>de.codecentric</groupId>
<artifactId>codecentric-spring-boot-admin-starter-server</artifactId> <artifactId>spring-boot-admin-starter-server</artifactId>
<version>${revision}</version> <version>${revision}</version>
</dependency> </dependency>
</dependencies> </dependencies>
......
...@@ -14,7 +14,7 @@ First you need to setup your server. To do this just setup a simple boot project ...@@ -14,7 +14,7 @@ First you need to setup your server. To do this just setup a simple boot project
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>de.codecentric</groupId> <groupId>de.codecentric</groupId>
<artifactId>codecentric-spring-boot-admin-starter-server</artifactId> <artifactId>spring-boot-admin-starter-server</artifactId>
<version>{project-version}</version> <version>{project-version}</version>
</dependency> </dependency>
</dependencies> </dependencies>
...@@ -55,7 +55,7 @@ Each application that wants to register has to include the Spring Boot Admin Cli ...@@ -55,7 +55,7 @@ Each application that wants to register has to include the Spring Boot Admin Cli
---- ----
<dependency> <dependency>
<groupId>de.codecentric</groupId> <groupId>de.codecentric</groupId>
<artifactId>codecentric-spring-boot-admin-starter-client</artifactId> <artifactId>spring-boot-admin-starter-client</artifactId>
<version>{project-version}</version> <version>{project-version}</version>
</dependency> </dependency>
---- ----
......
...@@ -15,8 +15,8 @@ Johannes Edmeier <https://twitter.com/joshiste[@joshiste]> ...@@ -15,8 +15,8 @@ Johannes Edmeier <https://twitter.com/joshiste[@joshiste]>
== What is Spring Boot Admin? == == What is Spring Boot Admin? ==
Spring Boot Admin is a application to manage and monitor your http://projects.spring.io/spring-boot/[Spring Boot Applications]. codecentric's Spring Boot Admin is a community project to manage and monitor your http://projects.spring.io/spring-boot/[Spring Boot] ^(R)^ applications.
The applications register with our Spring Boot Admin Client (via HTTP) or are discovered using Spring Cloud (e.g. Eureka). The applications register with our Spring Boot Admin Client (via HTTP) or are discovered using Spring Cloud ^(R)^ (e.g. Eureka, Consul).
The UI is just an AngularJs application on top of the Spring Boot Actuator endpoints. The UI is just an AngularJs application on top of the Spring Boot Actuator endpoints.
include::getting-started.adoc[] include::getting-started.adoc[]
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>de.codecentric</groupId> <groupId>de.codecentric</groupId>
<artifactId>codecentric-spring-boot-admin-starter-server</artifactId> <artifactId>spring-boot-admin-starter-server</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>de.codecentric</groupId> <groupId>de.codecentric</groupId>
<artifactId>codecentric-spring-boot-admin-starter-server</artifactId> <artifactId>spring-boot-admin-starter-server</artifactId>
</dependency> </dependency>
<!-- tag::dependency-eureka[] --> <!-- tag::dependency-eureka[] -->
<dependency> <dependency>
......
...@@ -11,11 +11,11 @@ ...@@ -11,11 +11,11 @@
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>de.codecentric</groupId> <groupId>de.codecentric</groupId>
<artifactId>codecentric-spring-boot-admin-starter-server</artifactId> <artifactId>spring-boot-admin-starter-server</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>de.codecentric</groupId> <groupId>de.codecentric</groupId>
<artifactId>codecentric-spring-boot-admin-starter-client</artifactId> <artifactId>spring-boot-admin-starter-client</artifactId>
</dependency> </dependency>
<!-- tag::dependency-hazelcast[] --> <!-- tag::dependency-hazelcast[] -->
<dependency> <dependency>
......
...@@ -18,11 +18,11 @@ ...@@ -18,11 +18,11 @@
</dependency> </dependency>
<dependency> <dependency>
<groupId>de.codecentric</groupId> <groupId>de.codecentric</groupId>
<artifactId>codecentric-spring-boot-admin-starter-server</artifactId> <artifactId>spring-boot-admin-starter-server</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>de.codecentric</groupId> <groupId>de.codecentric</groupId>
<artifactId>codecentric-spring-boot-admin-starter-client</artifactId> <artifactId>spring-boot-admin-starter-client</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>de.codecentric</groupId> <groupId>de.codecentric</groupId>
<artifactId>codecentric-spring-boot-admin-starter-server</artifactId> <artifactId>spring-boot-admin-starter-server</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>de.codecentric</groupId> <groupId>de.codecentric</groupId>
<artifactId>codecentric-spring-boot-admin-starter-server</artifactId> <artifactId>spring-boot-admin-starter-server</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>de.codecentric</groupId> <groupId>de.codecentric</groupId>
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
</dependency> </dependency>
<dependency> <dependency>
<groupId>de.codecentric</groupId> <groupId>de.codecentric</groupId>
<artifactId>codecentric-spring-boot-admin-starter-client</artifactId> <artifactId>spring-boot-admin-starter-client</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
......
...@@ -87,12 +87,6 @@ pre { ...@@ -87,12 +87,6 @@ pre {
max-width: 1024px; max-width: 1024px;
margin: 0 auto; margin: 0 auto;
} }
a.spring-boot-logo span {
display: block;
width: 80px;
height: 70px;
background: url("../img/platform-spring-boot.png") 0 center no-repeat;
}
/* ---------- */ /* ---------- */
......
This diff was suppressed by a .gitattributes entry.
This diff was suppressed by a .gitattributes entry.
...@@ -17,8 +17,7 @@ ...@@ -17,8 +17,7 @@
<div class="navbar-inner"> <div class="navbar-inner">
<div class="container-fluid"> <div class="container-fluid">
<a class="brand spring-boot-logo" href="#"><span></span></a> <a class="brand" href="#">Spring Boot Admin</a>
<span class="brand">Spring Boot Admin</span>
<ul class="nav pull-right"> <ul class="nav pull-right">
<li ng-repeat="view in mainViews" class="navbar-link" ng-class="{active: $state.includes(view.state)}"> <li ng-repeat="view in mainViews" class="navbar-link" ng-class="{active: $state.includes(view.state)}">
<a ui-sref="{{view.state}}" ng-bind-html="view.title"></a> <a ui-sref="{{view.state}}" ng-bind-html="view.title"></a>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
This is an administration GUI for Spring-Boot applications. This is an administration GUI for Spring-Boot applications.
</p> </p>
<p> <p>
All applications have to register themselves at this application. This is done by including <a href="http://codecentric.github.io/spring-boot-admin/@project.version@/#register-clients-via-spring-boot-admin">codecentric-spring-boot-admin-starter-client</a> or using <a href="http://codecentric.github.io/spring-boot-admin/@project.version@/#discover-clients-via-spring-cloud-discovery">Spring Cloud Discovery</a>. All applications have to register themselves at this application. This is done by including <a href="http://codecentric.github.io/spring-boot-admin/@project.version@/#register-clients-via-spring-boot-admin">spring-boot-admin-starter-client</a> or using <a href="http://codecentric.github.io/spring-boot-admin/@project.version@/#discover-clients-via-spring-cloud-discovery">Spring Cloud Discovery</a>.
</p> </p>
<ul class="unstyled"> <ul class="unstyled">
<li><a href="https://codecentric.github.io/spring-boot-admin/@project.version@" target="_blank">Reference Guide</a></li> <li><a href="https://codecentric.github.io/spring-boot-admin/@project.version@" target="_blank">Reference Guide</a></li>
......
...@@ -9,37 +9,10 @@ ...@@ -9,37 +9,10 @@
<version>${revision}</version> <version>${revision}</version>
<relativePath>../spring-boot-admin-build</relativePath> <relativePath>../spring-boot-admin-build</relativePath>
</parent> </parent>
<build> <dependencies>
<plugins> <dependency>
<plugin> <groupId>de.codecentric</groupId>
<groupId>org.codehaus.mojo</groupId> <artifactId>spring-boot-admin-client</artifactId>
<artifactId>flatten-maven-plugin</artifactId> </dependency>
<inherited>true</inherited> </dependencies>
<executions>
<execution>
<!-- Tidy up all POMs before they are published -->
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>oss</flattenMode>
<pomElements>
<parent>expand</parent>
<distributionManagement>keep</distributionManagement>
<repositories>remove</repositories>
</pomElements>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<relocation>
<artifactId>codecentric-spring-boot-admin-starter-client</artifactId>
</relocation>
</distributionManagement>
</project> </project>
\ No newline at end of file
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<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>codecentric-spring-boot-admin-starter-server</artifactId> <artifactId>spring-boot-admin-starter-server</artifactId>
<parent> <parent>
<groupId>de.codecentric</groupId> <groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-build</artifactId> <artifactId>spring-boot-admin-build</artifactId>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment