File tree Expand file tree Collapse file tree 3 files changed +23
-18
lines changed
spring-boot-admin-samples/spring-boot-admin-sample-servlet/src/main/resources
spring-boot-admin-server-ui Expand file tree Collapse file tree 3 files changed +23
-18
lines changed Original file line number Diff line number Diff line change 147147 <artifactId >maven-javadoc-plugin</artifactId >
148148 <configuration >
149149 <source >${java.version} </source >
150+ <encoding >${project.build.sourceEncoding} </encoding >
151+ <docencoding >${project.reporting.outputEncoding} </docencoding >
152+ <charset >${project.reporting.outputEncoding} </charset >
150153 <quiet >true</quiet >
151154 </configuration >
152155 <executions >
560563 </pluginRepository >
561564 </pluginRepositories >
562565 </profile >
566+ <!--
567+ Profile: noNpm
568+ Set this profile to skip any frontend related build step in this project.
569+ Skipping frontend tests can be achieved by using default flag -D skipTests.
570+ -->
571+ <profile >
572+ <id >noNpm</id >
573+ <build >
574+ <plugins >
575+ <plugin >
576+ <groupId >com.github.eirslett</groupId >
577+ <artifactId >frontend-maven-plugin</artifactId >
578+ <configuration >
579+ <skip >true</skip >
580+ </configuration >
581+ </plugin >
582+ </plugins >
583+ </build >
584+ </profile >
563585 </profiles >
564586
565587 <distributionManagement >
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ spring:
4545 simple :
4646 instances :
4747 SBA :
48- - uri : http://localhost:9999
48+ - uri : http://localhost:8080
4949 metadata :
5050 management.context-path : /actuator
5151 service-url : http://localhost:8080
Original file line number Diff line number Diff line change 169169 </plugin >
170170 </plugins >
171171 </build >
172-
173- <profiles >
174- <profile >
175- <id >noNpm</id >
176- <build >
177- <plugins >
178- <plugin >
179- <groupId >com.github.eirslett</groupId >
180- <artifactId >frontend-maven-plugin</artifactId >
181- <configuration >
182- <skip >true</skip >
183- </configuration >
184- </plugin >
185- </plugins >
186- </build >
187- </profile >
188- </profiles >
189172</project >
You can’t perform that action at this time.
0 commit comments