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
6dd91faf
Commit
6dd91faf
authored
Sep 22, 2014
by
Dennis Schulte
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add module build
parent
38499fff
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
256 additions
and
118 deletions
+256
-118
.gitignore
.gitignore
+4
-0
pom.xml
pom.xml
+233
-0
pom.xml
spring-boot-admin-example/pom.xml
+5
-19
pom.xml
spring-boot-admin-server/pom.xml
+5
-58
.gitignore
spring-boot-starter-admin-client/.gitignore
+3
-0
.project
spring-boot-starter-admin-client/.project
+2
-2
pom.xml
spring-boot-starter-admin-client/pom.xml
+4
-39
No files found.
.gitignore
0 → 100644
View file @
6dd91faf
/target
/.settings
/.classpath
/.project
pom.xml
0 → 100644
View file @
6dd91faf
<?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>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<version>
1.1.5.RELEASE
</version>
<relativePath
/>
<!-- lookup parent from repository -->
</parent>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-admin
</artifactId>
<version>
1.0.2-SNAPSHOT
</version>
<packaging>
pom
</packaging>
<name>
Spring Boot Admin
</name>
<description>
Spring Boot Admin
</description>
<url>
https://github.com/codecentric/spring-boot-admin/
</url>
<properties>
<spring-boot.version>
1.1.6.RELEASE
</spring-boot.version>
<spring.version>
4.0.7.RELEASE
</spring.version>
<bootstrap.version>
2.3.2
</bootstrap.version>
<jquery.version>
1.11.0
</jquery.version>
<angularjs.version>
1.2.12
</angularjs.version>
<angular-ui-router.version>
0.2.10-1
</angular-ui-router.version>
<angularjs-nvd3-directives.version>
0.0.7-1
</angularjs-nvd3-directives.version>
<d3js.version>
3.4.1
</d3js.version>
<nvd3.version>
1.1.15-beta
</nvd3.version>
<main.basedir>
${basedir}
</main.basedir>
</properties>
<modules>
<module>
spring-boot-admin-server
</module>
<module>
spring-boot-starter-admin-client
</module>
<module>
spring-boot-admin-example
</module>
</modules>
<organization>
<name>
codecentric AG
</name>
<url>
http://www.codecentric.de
</url>
</organization>
<licenses>
<license>
<name>
Apache License, Version 2.0
</name>
<url>
http://www.apache.org/licenses/LICENSE-2.0
</url>
</license>
</licenses>
<scm>
<connection>
scm:git:git://github.com/codecentric/spring-boot-admin.git
</connection>
<developerConnection>
scm:git:ssh://git@github.com/codecentric/spring-boot-admin.git
</developerConnection>
<url>
https://github.com/codecentric/spring-boot-admin
</url>
</scm>
<developers>
<developer>
<name>
Thomas Bosch
</name>
<email>
thomas.bosch@codecentric.de
</email>
<organization>
codecentric AG
</organization>
</developer>
<developer>
<name>
Dennis Schulte
</name>
<email>
dennis.schulte@codecentric.de
</email>
<organization>
codecentric AG
</organization>
</developer>
</developers>
<prerequisites>
<maven>
3.0.0
</maven>
</prerequisites>
<build>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<configuration>
<source>
1.7
</source>
<target>
1.7
</target>
<encoding>
utf8
</encoding>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-source-plugin
</artifactId>
<executions>
<execution>
<id>
attach-sources
</id>
<goals>
<goal>
jar-no-fork
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-javadoc-plugin
</artifactId>
<executions>
<execution>
<id>
attach-javadocs
</id>
<goals>
<goal>
jar
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-gpg-plugin
</artifactId>
<executions>
<execution>
<id>
sign-artifacts
</id>
<phase>
verify
</phase>
<goals>
<goal>
sign
</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-gpg-plugin
</artifactId>
<version>
1.4
</version>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-antrun-plugin
</artifactId>
<version>
1.7
</version>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-surefire-plugin
</artifactId>
<version>
2.17
</version>
</plugin>
<plugin>
<groupId>
com.google.code.maven-replacer-plugin
</groupId>
<artifactId>
replacer
</artifactId>
<version>
1.5.3
</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<distributionManagement>
<snapshotRepository>
<id>
sonatype-nexus-snapshots
</id>
<name>
Sonatype Nexus Snapshots
</name>
<url>
https://oss.sonatype.org/content/repositories/snapshots/
</url>
</snapshotRepository>
<repository>
<id>
sonatype-nexus-staging
</id>
<name>
Nexus Release Repository
</name>
<url>
https://oss.sonatype.org/service/local/staging/deploy/maven2/
</url>
</repository>
</distributionManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-admin-server
</artifactId>
<version>
1.0.2-SNAPSHOT
</version>
</dependency>
<dependency>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-starter-admin-client
</artifactId>
<version>
1.0.2-SNAPSHOT
</version>
</dependency>
<dependency>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-admin-example
</artifactId>
<version>
1.0.2-SNAPSHOT
</version>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
<version>
${spring-boot.version}
</version>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-databind
</artifactId>
<version>
2.3.3
</version>
</dependency>
<dependency>
<groupId>
org.apache.commons
</groupId>
<artifactId>
commons-lang3
</artifactId>
<version>
3.3.2
</version>
</dependency>
<dependency>
<groupId>
org.webjars
</groupId>
<artifactId>
bootstrap
</artifactId>
<version>
${bootstrap.version}
</version>
</dependency>
<dependency>
<groupId>
org.webjars
</groupId>
<artifactId>
jquery
</artifactId>
<version>
${jquery.version}
</version>
</dependency>
<dependency>
<groupId>
org.webjars
</groupId>
<artifactId>
angularjs
</artifactId>
<version>
${angularjs.version}
</version>
</dependency>
<dependency>
<groupId>
org.webjars
</groupId>
<artifactId>
angular-ui-router
</artifactId>
<version>
${angular-ui-router.version}
</version>
</dependency>
<dependency>
<groupId>
org.webjars
</groupId>
<artifactId>
angularjs-nvd3-directives
</artifactId>
<version>
${angularjs-nvd3-directives.version}
</version>
</dependency>
<dependency>
<groupId>
org.webjars
</groupId>
<artifactId>
d3js
</artifactId>
<version>
${d3js.version}
</version>
</dependency>
<dependency>
<groupId>
org.webjars
</groupId>
<artifactId>
nvd3
</artifactId>
<version>
${nvd3.version}
</version>
</dependency>
<!-- Test -->
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
4.10
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-test
</artifactId>
<version>
${spring.version}
</version>
<scope>
test
</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>
spring-boot-admin-example/pom.xml
View file @
6dd91faf
<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>
<parent>
<groupId>
de.codecentric
</groupId>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-admin-example
</artifactId>
<artifactId>
spring-boot-admin
</artifactId>
<version>
1.0.2-SNAPSHOT
</version>
<version>
1.0.2-SNAPSHOT
</version>
<licenses>
<relativePath>
..
</relativePath>
<license>
</parent>
<name>
Apache License, Version 2.0
</name>
<artifactId>
spring-boot-admin-example
</artifactId>
<url>
http://opensource.org/licenses/Apache-2.0
</url>
<distribution>
repo
</distribution>
</license>
</licenses>
<properties>
<spring-boot.version>
1.1.4.RELEASE
</spring-boot.version>
</properties>
<dependencies>
<dependencies>
<dependency>
<dependency>
<groupId>
de.codecentric
</groupId>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-admin-server
</artifactId>
<artifactId>
spring-boot-admin-server
</artifactId>
<version>
1.0.2-SNAPSHOT
</version>
</dependency>
</dependency>
</dependencies>
</dependencies>
<build>
<build>
...
@@ -27,17 +20,10 @@
...
@@ -27,17 +20,10 @@
<plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.1
</version>
<configuration>
<source>
1.7
</source>
<target>
1.7
</target>
<encoding>
utf8
</encoding>
</configuration>
</plugin>
</plugin>
<plugin>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<version>
${spring-boot.version}
</version>
<executions>
<executions>
<execution>
<execution>
<goals>
<goals>
...
...
spring-boot-admin-server/pom.xml
View file @
6dd91faf
<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>
<parent>
<groupId>
de.codecentric
</groupId>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-admin-server
</artifactId>
<artifactId>
spring-boot-admin
</artifactId>
<version>
1.0.2-SNAPSHOT
</version>
<version>
1.0.2-SNAPSHOT
</version>
<licenses>
<relativePath>
..
</relativePath>
<license>
</parent>
<name>
Apache License, Version 2.0
</name>
<artifactId>
spring-boot-admin-server
</artifactId>
<url>
http://opensource.org/licenses/Apache-2.0
</url>
<distribution>
repo
</distribution>
</license>
</licenses>
<properties>
<spring-boot.version>
1.1.4.RELEASE
</spring-boot.version>
<spring.version>
4.0.6.RELEASE
</spring.version>
<bootstrap.version>
2.3.2
</bootstrap.version>
<jquery.version>
1.11.0
</jquery.version>
<angularjs.version>
1.2.12
</angularjs.version>
<angular-ui-router.version>
0.2.10-1
</angular-ui-router.version>
<angularjs-nvd3-directives.version>
0.0.7-1
</angularjs-nvd3-directives.version>
<d3js.version>
3.4.1
</d3js.version>
<nvd3.version>
1.1.15-beta
</nvd3.version>
</properties>
<dependencies>
<dependencies>
<dependency>
<dependency>
<groupId>
de.codecentric
</groupId>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-starter-admin-client
</artifactId>
<artifactId>
spring-boot-starter-admin-client
</artifactId>
<version>
1.0.1.RELEASE
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
<artifactId>
spring-boot-starter-web
</artifactId>
<version>
${spring-boot.version}
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-databind
</artifactId>
<artifactId>
jackson-databind
</artifactId>
<version>
2.3.3
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.apache.commons
</groupId>
<groupId>
org.apache.commons
</groupId>
<artifactId>
commons-lang3
</artifactId>
<artifactId>
commons-lang3
</artifactId>
<version>
3.3.2
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.webjars
</groupId>
<groupId>
org.webjars
</groupId>
<artifactId>
bootstrap
</artifactId>
<artifactId>
bootstrap
</artifactId>
<version>
${bootstrap.version}
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.webjars
</groupId>
<groupId>
org.webjars
</groupId>
<artifactId>
jquery
</artifactId>
<artifactId>
jquery
</artifactId>
<version>
${jquery.version}
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.webjars
</groupId>
<groupId>
org.webjars
</groupId>
<artifactId>
angularjs
</artifactId>
<artifactId>
angularjs
</artifactId>
<version>
${angularjs.version}
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.webjars
</groupId>
<groupId>
org.webjars
</groupId>
<artifactId>
angular-ui-router
</artifactId>
<artifactId>
angular-ui-router
</artifactId>
<version>
${angular-ui-router.version}
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.webjars
</groupId>
<groupId>
org.webjars
</groupId>
<artifactId>
angularjs-nvd3-directives
</artifactId>
<artifactId>
angularjs-nvd3-directives
</artifactId>
<version>
${angularjs-nvd3-directives.version}
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.webjars
</groupId>
<groupId>
org.webjars
</groupId>
<artifactId>
d3js
</artifactId>
<artifactId>
d3js
</artifactId>
<version>
${d3js.version}
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.webjars
</groupId>
<groupId>
org.webjars
</groupId>
<artifactId>
nvd3
</artifactId>
<artifactId>
nvd3
</artifactId>
<version>
${nvd3.version}
</version>
</dependency>
</dependency>
<!-- Test -->
<!-- Test -->
<dependency>
<dependency>
<groupId>
junit
</groupId>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<artifactId>
junit
</artifactId>
<version>
4.10
</version>
<scope>
test
</scope>
<scope>
test
</scope>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-test
</artifactId>
<artifactId>
spring-test
</artifactId>
<version>
${spring.version}
</version>
<scope>
test
</scope>
<scope>
test
</scope>
</dependency>
</dependency>
</dependencies>
</dependencies>
<repositories>
<repository>
<id>
repo
</id>
<releases>
<enabled>
true
</enabled>
<checksumPolicy>
ignore
</checksumPolicy>
</releases>
<snapshots>
<enabled>
false
</enabled>
</snapshots>
<url>
https://raw.githubusercontent.com/dickerpulli/maven-repo/master
</url>
</repository>
</repositories>
<build>
<build>
<finalName>
${project.artifactId}
</finalName>
<finalName>
${project.artifactId}
</finalName>
<resources>
<resources>
...
@@ -129,17 +89,5 @@
...
@@ -129,17 +89,5 @@
</includes>
</includes>
</resource>
</resource>
</resources>
</resources>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.1
</version>
<configuration>
<source>
1.7
</source>
<target>
1.7
</target>
<encoding>
utf8
</encoding>
</configuration>
</plugin>
</plugins>
</build>
</build>
</project>
</project>
\ No newline at end of file
spring-boot-starter-admin-client/.gitignore
View file @
6dd91faf
/target
/target
/.settings
/.classpath
/.project
spring-boot-starter-admin-client/.project
View file @
6dd91faf
...
@@ -11,12 +11,12 @@
...
@@ -11,12 +11,12 @@
</arguments>
</arguments>
</buildCommand>
</buildCommand>
<buildCommand>
<buildCommand>
<name>
org.
eclipse.m2e.core.maven2B
uilder
</name>
<name>
org.
springframework.ide.eclipse.core.springb
uilder
</name>
<arguments>
<arguments>
</arguments>
</arguments>
</buildCommand>
</buildCommand>
<buildCommand>
<buildCommand>
<name>
org.
springframework.ide.eclipse.core.springb
uilder
</name>
<name>
org.
eclipse.m2e.core.maven2B
uilder
</name>
<arguments>
<arguments>
</arguments>
</arguments>
</buildCommand>
</buildCommand>
...
...
spring-boot-starter-admin-client/pom.xml
View file @
6dd91faf
<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>
<parent>
<groupId>
de.codecentric
</groupId>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-starter-admin-client
</artifactId>
<artifactId>
spring-boot-admin
</artifactId>
<version>
1.0.2-SNAPSHOT
</version>
<version>
1.0.2-SNAPSHOT
</version>
<parent>
<relativePath>
..
</relativePath>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starters
</artifactId>
<version>
1.1.4.RELEASE
</version>
</parent>
</parent>
<licenses>
<artifactId>
spring-boot-starter-admin-client
</artifactId>
<license>
<name>
Apache License, Version 2.0
</name>
<url>
http://opensource.org/licenses/Apache-2.0
</url>
<distribution>
repo
</distribution>
</license>
</licenses>
<dependencies>
<dependencies>
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
...
@@ -38,30 +30,4 @@
...
@@ -38,30 +30,4 @@
<artifactId>
jolokia-core
</artifactId>
<artifactId>
jolokia-core
</artifactId>
</dependency>
</dependency>
</dependencies>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-source-plugin
</artifactId>
<executions>
<execution>
<goals>
<goal>
jar
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-javadoc-plugin
</artifactId>
<executions>
<execution>
<goals>
<goal>
jar
</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
</project>
\ No newline at end of file
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