Skip to content
This repository has been archived by the owner on Mar 27, 2020. It is now read-only.

Commit

Permalink
updated versions
Browse files Browse the repository at this point in the history
  • Loading branch information
wuan committed Apr 7, 2017
1 parent dd88843 commit d4848ce
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions pom.xml
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.3.RELEASE</version>
<version>1.5.2.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

Expand All @@ -33,12 +33,12 @@
<dependency>
<groupId>com.mercateo.rest</groupId>
<artifactId>rest-schemagen-spring</artifactId>
<version>0.1.14</version>
<version>0.1.16</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.12</version>
<version>1.16.16</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
Expand All @@ -48,17 +48,17 @@
<dependency>
<groupId>io.javaslang</groupId>
<artifactId>javaslang</artifactId>
<version>2.0.5</version>
<version>2.0.6</version>
</dependency>
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-jersey2-jaxrs</artifactId>
<version>1.5.10</version>
<version>1.5.13</version>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>swagger-ui</artifactId>
<version>2.2.8</version>
<version>3.0.4</version>
</dependency>

<dependency>
Expand All @@ -75,7 +75,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.6.1</version>
<version>3.6.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -91,12 +91,12 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.5.0</version>
<version>1.6.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.0</version>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
Expand All @@ -119,7 +119,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.8</version>
<version>0.7.9</version>
<executions>
<execution>
<id>prepare-agent</id>
Expand Down
Expand Up @@ -36,7 +36,7 @@ public JerseyConfiguration() {
beanConfig.setHost("localhost:9090");
beanConfig.setBasePath("/api");
beanConfig.setResourcePackage(RESOURCE_BASE_PACKAGE);
beanConfig.setScan(true);
//beanConfig.setScan(true);

register(ApiListingResource.class);
register(SwaggerSerializers.class);
Expand Down

0 comments on commit d4848ce

Please sign in to comment.