Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
rehammuzzamil committed Jun 17, 2021
1 parent 05da194 commit a81a75f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 30 deletions.
29 changes: 0 additions & 29 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,6 @@
<version>${spring_boot_version}</version>
</dependency>

<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<optional>true</optional>
</dependency>

<!-- @ConfigurationProperties annotation processing (metadata for IDEs) -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>

<!-- Test dependencies -->
<dependency>
<groupId>org.springframework.boot</groupId>
Expand All @@ -46,22 +33,6 @@
<artifactId>spring-web</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<scope>test</scope>
<version>1.7.30</version>
</dependency>
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-spring-boot-starter</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/autoconfigure/KeycloakSecurityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public void configure(WebSecurity web) throws Exception {
.and().ignoring().antMatchers("/home")
.and().ignoring().antMatchers("/*")
.and().ignoring().antMatchers("/fhir/metadata");
// /* @formatter:on */
/* @formatter:on */
}

@Bean
Expand Down

0 comments on commit a81a75f

Please sign in to comment.