Skip to content

Commit 8491f8e

Browse files
author
Dave Syer
committed
Simplify build config for actuator sample
1 parent 8c3cb51 commit 8491f8e

File tree

1 file changed

+0
-74
lines changed
  • spring-boot-samples/spring-boot-sample-actuator

1 file changed

+0
-74
lines changed

spring-boot-samples/spring-boot-sample-actuator/pom.xml

Lines changed: 0 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,10 @@
1616
<dependency>
1717
<groupId>org.springframework.boot</groupId>
1818
<artifactId>spring-boot-starter-actuator</artifactId>
19-
<exclusions>
20-
<exclusion>
21-
<groupId>org.springframework.boot</groupId>
22-
<artifactId>spring-boot-starter-logging</artifactId>
23-
</exclusion>
24-
</exclusions>
2519
</dependency>
2620
<dependency>
2721
<groupId>org.springframework.boot</groupId>
2822
<artifactId>spring-boot-starter-web</artifactId>
29-
<exclusions>
30-
<exclusion>
31-
<groupId>org.springframework.boot</groupId>
32-
<artifactId>spring-boot-starter-tomcat</artifactId>
33-
</exclusion>
34-
</exclusions>
3523
</dependency>
3624
<dependency>
3725
<groupId>org.springframework.boot</groupId>
@@ -69,66 +57,4 @@
6957
</plugin>
7058
</plugins>
7159
</build>
72-
<profiles>
73-
<profile>
74-
<id>tomcat</id>
75-
<activation>
76-
<activeByDefault>false</activeByDefault>
77-
</activation>
78-
<dependencies>
79-
<dependency>
80-
<groupId>org.springframework.boot</groupId>
81-
<artifactId>spring-boot-starter-tomcat</artifactId>
82-
</dependency>
83-
</dependencies>
84-
</profile>
85-
<profile>
86-
<id>jetty</id>
87-
<activation>
88-
<activeByDefault>true</activeByDefault>
89-
</activation>
90-
<dependencies>
91-
<dependency>
92-
<groupId>org.springframework.boot</groupId>
93-
<artifactId>spring-boot-starter-jetty</artifactId>
94-
</dependency>
95-
</dependencies>
96-
</profile>
97-
<profile>
98-
<id>juli</id>
99-
<activation>
100-
<activeByDefault>false</activeByDefault>
101-
</activation>
102-
<dependencies>
103-
<dependency>
104-
<groupId>org.slf4j</groupId>
105-
<artifactId>slf4j-jdk14</artifactId>
106-
</dependency>
107-
</dependencies>
108-
</profile>
109-
<profile>
110-
<id>log4j</id>
111-
<activation>
112-
<activeByDefault>false</activeByDefault>
113-
</activation>
114-
<dependencies>
115-
<dependency>
116-
<groupId>org.springframework.boot</groupId>
117-
<artifactId>spring-boot-starter-log4j</artifactId>
118-
</dependency>
119-
</dependencies>
120-
</profile>
121-
<profile>
122-
<id>logback</id>
123-
<activation>
124-
<activeByDefault>true</activeByDefault>
125-
</activation>
126-
<dependencies>
127-
<dependency>
128-
<groupId>org.springframework.boot</groupId>
129-
<artifactId>spring-boot-starter-logging</artifactId>
130-
</dependency>
131-
</dependencies>
132-
</profile>
133-
</profiles>
13460
</project>

0 commit comments

Comments
 (0)