Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-boot-admin
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
spring-boot-admin
Commits
b9b55166
Commit
b9b55166
authored
Dec 15, 2015
by
Johannes Edmeier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use commit-date for revdate
parent
44c839af
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
86 additions
and
64 deletions
+86
-64
pom.xml
pom.xml
+7
-3
pom.xml
spring-boot-admin-docs/pom.xml
+74
-57
index.adoc
spring-boot-admin-docs/src/main/asciidoc/index.adoc
+5
-4
No files found.
pom.xml
View file @
b9b55166
<?xml version="1.0" encoding="UTF-8"?>
<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"
>
<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>
<parent>
<groupId>
org.springframework.boot
</groupId>
...
...
@@ -24,6 +23,7 @@
<build-plugin.gpg.version>
1.6
</build-plugin.gpg.version>
<build-plugin.asciidoctor.version>
1.5.2
</build-plugin.asciidoctor.version>
<build-plugin.exec.version>
1.4.0
</build-plugin.exec.version>
<build-plugin.git-commit-id.version>
2.2.0
</build-plugin.git-commit-id.version>
</properties>
<modules>
<module>
spring-boot-admin-server
</module>
...
...
@@ -107,6 +107,11 @@
<artifactId>
exec-maven-plugin
</artifactId>
<version>
${build-plugin.exec.version}
</version>
</plugin>
<plugin>
<groupId>
pl.project13.maven
</groupId>
<artifactId>
git-commit-id-plugin
</artifactId>
<version>
${build-plugin.git-commit-id.version}
</version>
</plugin>
</plugins>
</pluginManagement>
</build>
...
...
@@ -164,7 +169,6 @@
<goal>
prepare-agent
</goal>
</goals>
</execution>
<!-- Ensures that the code coverage report for
unit tests is created after unit tests have been run. -->
<execution>
...
...
spring-boot-admin-docs/pom.xml
View file @
b9b55166
<?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
<modelVersion>
4.0.0
</modelVersion>
<parent>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-admin
</artifactId>
<version>
1.3.1-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
</parent>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-admin
</artifactId>
<version>
1.3.1-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
</parent>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-admin-docs
</artifactId>
<packaging>
pom
</packaging>
<name>
Spring Boot Admin Docs
</name>
<description>
Spring Boot Admin Documentation
</description>
<url>
https://github.com/codecentric/spring-boot-admin/
</url>
<build>
<plugins>
<plugin>
<groupId>
org.asciidoctor
</groupId>
<artifactId>
asciidoctor-maven-plugin
</artifactId>
<executions>
<execution>
<id>
output-html
</id>
<phase>
generate-resources
</phase>
<goals>
<goal>
process-asciidoc
</goal>
</goals>
<configuration>
<sourceDocumentName>
index.adoc
</sourceDocumentName>
<backend>
html5
</backend>
<sourceHighlighter>
coderay
</sourceHighlighter>
<attributes>
<revnumber>
${project.version}
</revnumber>
<projectversion>
${project.version}
</projectversion>
</attributes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
exec-maven-plugin
</artifactId>
<executions>
<execution>
<id>
deploy-gh-pages
</id>
<phase>
deploy
</phase>
<goals>
<goal>
exec
</goal>
</goals>
<configuration>
<executable>
./deploy-gh-pages.sh
</executable>
<arguments>
<argument>
${project.version}
</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<artifactId>
spring-boot-admin-docs
</artifactId>
<packaging>
pom
</packaging>
<name>
Spring Boot Admin Docs
</name>
<description>
Spring Boot Admin Documentation
</description>
<url>
https://github.com/codecentric/spring-boot-admin/
</url>
<build>
<plugins>
<plugin>
<groupId>
pl.project13.maven
</groupId>
<artifactId>
git-commit-id-plugin
</artifactId>
<executions>
<execution>
<goals>
<goal>
revision
</goal>
</goals>
<configuration>
<skipPoms>
false
</skipPoms>
<generateGitPropertiesFile>
false
</generateGitPropertiesFile>
<dateFormat>
dd.MM.yyyy
</dateFormat>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.asciidoctor
</groupId>
<artifactId>
asciidoctor-maven-plugin
</artifactId>
<executions>
<execution>
<id>
output-html
</id>
<phase>
generate-resources
</phase>
<goals>
<goal>
process-asciidoc
</goal>
</goals>
<configuration>
<sourceDocumentName>
index.adoc
</sourceDocumentName>
<backend>
html5
</backend>
<sourceHighlighter>
coderay
</sourceHighlighter>
<attributes>
<commit-id>
${git.commit.id.abbrev}
</commit-id>
<commit-time>
${git.commit.time}
</commit-time>
<project-version>
${project.version}
</project-version>
</attributes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
exec-maven-plugin
</artifactId>
<executions>
<execution>
<id>
deploy-gh-pages
</id>
<phase>
deploy
</phase>
<goals>
<goal>
exec
</goal>
</goals>
<configuration>
<executable>
./deploy-gh-pages.sh
</executable>
<arguments>
<argument>
${project.version}
</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
spring-boot-admin-docs/src/main/asciidoc/index.adoc
View file @
b9b55166
= Spring Boot Admin Reference Guide =
Johannes Edmeier <https://twitter.com/joshiste[@joshiste]>
{docdate}
:revnumber: {project-version}
:revdate: {commit-time}
:toc: right
:doctype: book
:sectanchors:
...
...
@@ -32,12 +33,12 @@ First you need to setup your server. To do this just setup a simple boot project
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-server</artifactId>
<version>{projectversion}</version>
<version>{project
-
version}</version>
</dependency>
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-server-ui</artifactId>
<version>{projectversion}</version>
<version>{project
-
version}</version>
</dependency>
----
...
...
@@ -76,7 +77,7 @@ Each application that want to register itself to the admin has to include the Sp
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-client</artifactId>
<version>{projectversion}</version>
<version>{project
-
version}</version>
</dependency>
----
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment