File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed
spring-boot-admin-client/src/main/java/de/codecentric/boot/admin/client/registration
spring-boot-admin-server/src/main/java/de/codecentric/boot/admin/server/domain/values Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 127127 <plugin >
128128 <groupId >org.apache.maven.plugins</groupId >
129129 <artifactId >maven-javadoc-plugin</artifactId >
130+ <configuration >
131+ <source >${java.version} </source >
132+ </configuration >
130133 <executions >
131134 <execution >
132135 <id >attach-javadocs</id >
163166 <groupId >org.apache.maven.plugins</groupId >
164167 <artifactId >maven-compiler-plugin</artifactId >
165168 <configuration >
169+ <parameters >true</parameters >
166170 <source >${maven.compiler.source} </source >
167171 <target >${maven.compiler.target} </target >
168172 </configuration >
Original file line number Diff line number Diff line change @@ -50,6 +50,10 @@ protected Application(String name,
5050 this .metadata = new HashMap <>(metadata );
5151 }
5252
53+ public static class Builder {
54+ //Will be generated by lombok
55+ }
56+
5357 public static Builder create (String name ) {
5458 return Application .builder ().name (name );
5559 }
Original file line number Diff line number Diff line change @@ -69,6 +69,10 @@ private Registration(String name,
6969 this .metadata = new LinkedHashMap <>(metadata );
7070 }
7171
72+ public static class Builder {
73+ //Will be generated by lombok
74+ }
75+
7276 public static Registration .Builder create (String name , String healthUrl ) {
7377 return builder ().name (name ).healthUrl (healthUrl );
7478 }
@@ -78,7 +82,7 @@ public static Registration.Builder copyOf(Registration registration) {
7882 }
7983
8084 public Map <String , String > getMetadata () {
81- return Collections .unmodifiableMap (metadata );
85+ return Collections .unmodifiableMap (this . metadata );
8286 }
8387
8488 /**
You can’t perform that action at this time.
0 commit comments