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
d294f16f
Commit
d294f16f
authored
Jul 31, 2014
by
Thomas Bosch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include licence
parent
dedfc3cc
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
129 additions
and
2 deletions
+129
-2
LICENSE.TXT
LICENSE.TXT
+0
-0
pom.xml
pom.xml
+9
-2
SpringBootAdmin.java
src/main/java/de/codecentric/boot/admin/SpringBootAdmin.java
+15
-0
WebappConfig.java
...n/java/de/codecentric/boot/admin/config/WebappConfig.java
+15
-0
RegistryController.java
...codecentric/boot/admin/controller/RegistryController.java
+15
-0
ApplicationRegistry.java
...e/codecentric/boot/admin/service/ApplicationRegistry.java
+15
-0
app.js
src/main/webapp/public/scripts/app.js
+15
-0
controllers.js
src/main/webapp/public/scripts/controllers/controllers.js
+15
-0
filters.js
src/main/webapp/public/scripts/filters/filters.js
+15
-0
services.js
src/main/webapp/public/scripts/services/services.js
+15
-0
No files found.
LICENSE.TXT
0 → 100644
View file @
d294f16f
This diff is collapsed.
Click to expand it.
pom.xml
View file @
d294f16f
...
@@ -3,7 +3,14 @@
...
@@ -3,7 +3,14 @@
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
de.codecentric
</groupId>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-admin
</artifactId>
<artifactId>
spring-boot-admin
</artifactId>
<version>
1.0.0.RELEASE
</version>
<version>
1.0.1.RELEASE
</version>
<licenses>
<license>
<name>
Apache License, Version 2.0
</name>
<url>
http://opensource.org/licenses/Apache-2.0
</url>
<distribution>
repo
</distribution>
</license>
</licenses>
<properties>
<properties>
<spring-boot.version>
1.1.4.RELEASE
</spring-boot.version>
<spring-boot.version>
1.1.4.RELEASE
</spring-boot.version>
<bootstrap.version>
2.3.2
</bootstrap.version>
<bootstrap.version>
2.3.2
</bootstrap.version>
...
@@ -15,7 +22,7 @@
...
@@ -15,7 +22,7 @@
<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.
0
.RELEASE
</version>
<version>
1.0.
1
.RELEASE
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
...
...
src/main/java/de/codecentric/boot/admin/SpringBootAdmin.java
View file @
d294f16f
/*
* Copyright 2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
de
.
codecentric
.
boot
.
admin
;
package
de
.
codecentric
.
boot
.
admin
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.SpringApplication
;
...
...
src/main/java/de/codecentric/boot/admin/config/WebappConfig.java
View file @
d294f16f
/*
* Copyright 2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
de
.
codecentric
.
boot
.
admin
.
config
;
package
de
.
codecentric
.
boot
.
admin
.
config
;
import
java.util.List
;
import
java.util.List
;
...
...
src/main/java/de/codecentric/boot/admin/controller/RegistryController.java
View file @
d294f16f
/*
* Copyright 2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
de
.
codecentric
.
boot
.
admin
.
controller
;
package
de
.
codecentric
.
boot
.
admin
.
controller
;
import
java.util.List
;
import
java.util.List
;
...
...
src/main/java/de/codecentric/boot/admin/service/ApplicationRegistry.java
View file @
d294f16f
/*
* Copyright 2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
de
.
codecentric
.
boot
.
admin
.
service
;
package
de
.
codecentric
.
boot
.
admin
.
service
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
...
...
src/main/webapp/public/scripts/app.js
View file @
d294f16f
/*
* Copyright 2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict'
;
'use strict'
;
angular
.
module
(
'springBootAdmin'
,
[
angular
.
module
(
'springBootAdmin'
,
[
...
...
src/main/webapp/public/scripts/controllers/controllers.js
View file @
d294f16f
/*
* Copyright 2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict'
;
'use strict'
;
angular
.
module
(
'springBootAdmin'
)
angular
.
module
(
'springBootAdmin'
)
...
...
src/main/webapp/public/scripts/filters/filters.js
View file @
d294f16f
/*
* Copyright 2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict'
;
'use strict'
;
angular
.
module
(
'springBootAdmin'
)
angular
.
module
(
'springBootAdmin'
)
...
...
src/main/webapp/public/scripts/services/services.js
View file @
d294f16f
/*
* Copyright 2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict'
;
'use strict'
;
angular
.
module
(
'springBootAdmin.services'
,
[
'ngResource'
])
angular
.
module
(
'springBootAdmin.services'
,
[
'ngResource'
])
...
...
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