File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed
java/org/phoebus/channelfinder Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 199199 <artifactId >micrometer-registry-prometheus</artifactId >
200200 <scope >runtime</scope >
201201 </dependency >
202+ <dependency >
203+ <groupId >io.swagger.core.v3</groupId >
204+ <artifactId >swagger-core</artifactId >
205+ <version >2.2.20</version >
206+ </dependency >
202207 </dependencies >
203208 <build >
204209 <!-- read properties from the pom file and add them to the application.properties -->
Original file line number Diff line number Diff line change 2020import java .util .logging .Level ;
2121import java .util .logging .Logger ;
2222
23+ import io .swagger .v3 .oas .annotations .OpenAPIDefinition ;
24+ import io .swagger .v3 .oas .annotations .servers .Server ;
2325import org .phoebus .channelfinder .example .PopulateService ;
2426import org .phoebus .channelfinder .processors .ChannelProcessor ;
2527import org .springframework .beans .factory .annotation .Autowired ;
3840@ EnableAutoConfiguration
3941@ ComponentScan (basePackages ="org.phoebus.channelfinder" )
4042@ EnableScheduling
43+ @ OpenAPIDefinition (
44+ servers = {
45+ @ Server (url = "/" )
46+ }
47+ )
4148@ SpringBootApplication
4249public class Application implements ApplicationRunner {
4350
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ server.ssl.key-store=classpath:keystore/newcf.p12
1111server.ssl.key-store-password =password
1212server.ssl.key-alias =cf
1313
14- security.require-ssl =true
14+ security.require-ssl =false
1515
1616server.compression.enabled =true
1717# opt in to content types
You can’t perform that action at this time.
0 commit comments