Skip to content

Commit ab11678

Browse files
committed
updated dependencies
1 parent 611343e commit ab11678

File tree

2 files changed

+19
-8
lines changed

2 files changed

+19
-8
lines changed

pom.xml

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
<packaging>jar</packaging>
1010

1111
<properties>
12-
<springfox.version>2.8.0</springfox.version>
13-
<spring.version>1.5.9.RELEASE</spring.version>
14-
<jackson.version>2.9.3</jackson.version>
15-
<lombok.version>1.16.20</lombok.version>
16-
<guava.version>23.6-jre</guava.version>
12+
<springfox.version>2.9.2</springfox.version>
13+
<spring.version>2.0.4.RELEASE</spring.version>
14+
<jackson.version>2.9.6</jackson.version>
15+
<lombok.version>1.18.2</lombok.version>
16+
<guava.version>26.0-jre</guava.version>
1717

18-
<cglib.version>3.2.5</cglib.version>
18+
<cglib.version>3.2.7</cglib.version>
1919
<spock.version>1.1-groovy-2.4</spock.version>
2020
<jsonpath.version>2.4.0</jsonpath.version>
2121

@@ -68,6 +68,12 @@
6868
<artifactId>guava</artifactId>
6969
<version>${guava.version}</version>
7070
</dependency>
71+
<dependency>
72+
<groupId>javax.xml.bind</groupId>
73+
<artifactId>jaxb-api</artifactId>
74+
<version>2.4.0-b180725.0427</version>
75+
<scope>provided</scope>
76+
</dependency>
7177
<dependency>
7278
<groupId>org.projectlombok</groupId>
7379
<artifactId>lombok</artifactId>
@@ -124,6 +130,11 @@
124130
<target>1.8</target>
125131
</configuration>
126132
</plugin>
133+
<plugin>
134+
<groupId>org.codehaus.mojo</groupId>
135+
<artifactId>versions-maven-plugin</artifactId>
136+
<version>2.5</version>
137+
</plugin>
127138
<plugin>
128139
<groupId>org.codehaus.gmavenplus</groupId>
129140
<artifactId>gmavenplus-plugin</artifactId>

src/main/java/com/github/springfox/loader/SpringfoxLoaderConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import org.springframework.util.StringValueResolver;
1616
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
1717
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
18-
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
18+
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
1919
import springfox.documentation.RequestHandler;
2020
import springfox.documentation.builders.PathSelectors;
2121
import springfox.documentation.builders.RequestHandlerSelectors;
@@ -37,7 +37,7 @@
3737
@EnableConfigurationProperties
3838
@Configuration
3939
@ComponentScan(basePackageClasses = SpringfoxLoaderConfig.class)
40-
public class SpringfoxLoaderConfig extends WebMvcConfigurerAdapter implements ApplicationContextAware, EmbeddedValueResolverAware {
40+
public class SpringfoxLoaderConfig implements WebMvcConfigurer, ApplicationContextAware, EmbeddedValueResolverAware {
4141

4242
private SpringfoxLoader springfoxLoader = new SpringfoxLoader();
4343

0 commit comments

Comments
 (0)