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
ecf99dd6
Commit
ecf99dd6
authored
May 16, 2018
by
Johannes Edmeier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Exclude sba-server-cloud from bom and starter when cloud is excluded
parent
c2514ec9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
44 additions
and
9 deletions
+44
-9
pom.xml
pom.xml
+5
-0
pom.xml
spring-boot-admin-build/pom.xml
+1
-0
pom.xml
spring-boot-admin-dependencies/pom.xml
+19
-5
pom.xml
spring-boot-admin-starter-server/pom.xml
+19
-4
No files found.
pom.xml
View file @
ecf99dd6
...
...
@@ -168,6 +168,11 @@
<configuration>
<updatePomFile>
true
</updatePomFile>
<flattenMode>
oss
</flattenMode>
<embedBuildProfileDependencies>
true
</embedBuildProfileDependencies>
<pomElements>
<distributionManagement>
remove
</distributionManagement>
<repositories>
remove
</repositories>
</pomElements>
</configuration>
<executions>
<execution>
...
...
spring-boot-admin-build/pom.xml
View file @
ecf99dd6
...
...
@@ -69,6 +69,7 @@
<configuration>
<updatePomFile>
true
</updatePomFile>
<flattenMode>
oss
</flattenMode>
<embedBuildProfileDependencies>
true
</embedBuildProfileDependencies>
<pomElements>
<parent>
expand
</parent>
<distributionManagement>
remove
</distributionManagement>
...
...
spring-boot-admin-dependencies/pom.xml
View file @
ecf99dd6
...
...
@@ -42,11 +42,6 @@
</dependency>
<dependency>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-admin-server-cloud
</artifactId>
<version>
${revision}
</version>
</dependency>
<dependency>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-admin-client
</artifactId>
<version>
${revision}
</version>
</dependency>
...
...
@@ -90,4 +85,23 @@
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>
include-cloud
</id>
<activation>
<property>
<name>
!excludeSpringCloud
</name>
</property>
</activation>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-admin-server-cloud
</artifactId>
<version>
${revision}
</version>
</dependency>
</dependencies>
</dependencyManagement>
</profile>
</profiles>
</project>
spring-boot-admin-starter-server/pom.xml
View file @
ecf99dd6
...
...
@@ -34,11 +34,26 @@
</dependency>
<dependency>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-admin-server-cloud
</artifactId>
</dependency>
<dependency>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-admin-server-ui
</artifactId>
</dependency>
</dependencies>
<profiles>
<profile>
<id>
include-cloud
</id>
<activation>
<property>
<name>
!excludeSpringCloud
</name>
</property>
</activation>
<dependencies>
<dependency>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-admin-server-cloud
</artifactId>
<!--fix for https://github.com/mojohaus/flatten-maven-plugin/issues/70 -->
<version>
${revision}
</version>
<scope>
compile
</scope>
</dependency>
</dependencies>
</profile>
</profiles>
</project>
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