Skip to content

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jarlehansen committed Aug 12, 2018
1 parent 611343e commit ab11678
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
23 changes: 17 additions & 6 deletions pom.xml
Expand Up @@ -9,13 +9,13 @@
<packaging>jar</packaging>

<properties>
<springfox.version>2.8.0</springfox.version>
<spring.version>1.5.9.RELEASE</spring.version>
<jackson.version>2.9.3</jackson.version>
<lombok.version>1.16.20</lombok.version>
<guava.version>23.6-jre</guava.version>
<springfox.version>2.9.2</springfox.version>
<spring.version>2.0.4.RELEASE</spring.version>
<jackson.version>2.9.6</jackson.version>
<lombok.version>1.18.2</lombok.version>
<guava.version>26.0-jre</guava.version>

<cglib.version>3.2.5</cglib.version>
<cglib.version>3.2.7</cglib.version>
<spock.version>1.1-groovy-2.4</spock.version>
<jsonpath.version>2.4.0</jsonpath.version>

Expand Down Expand Up @@ -68,6 +68,12 @@
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.4.0-b180725.0427</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
Expand Down Expand Up @@ -124,6 +130,11 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
Expand Down
Expand Up @@ -15,7 +15,7 @@
import org.springframework.util.StringValueResolver;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import springfox.documentation.RequestHandler;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
Expand All @@ -37,7 +37,7 @@
@EnableConfigurationProperties
@Configuration
@ComponentScan(basePackageClasses = SpringfoxLoaderConfig.class)
public class SpringfoxLoaderConfig extends WebMvcConfigurerAdapter implements ApplicationContextAware, EmbeddedValueResolverAware {
public class SpringfoxLoaderConfig implements WebMvcConfigurer, ApplicationContextAware, EmbeddedValueResolverAware {

private SpringfoxLoader springfoxLoader = new SpringfoxLoader();

Expand Down

0 comments on commit ab11678

Please sign in to comment.