Skip to content

Commit

Permalink
update lib versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Boris Marn committed Feb 13, 2018
1 parent 9859788 commit f931fe5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.3.RELEASE</version>
<version>1.5.10.RELEASE</version>
</parent>

<properties>
<swagger.version>2.6.1</swagger.version>
<swagger.version>2.8.0</swagger.version>
<java.version>1.8</java.version>
<start-class>com.sbapp.Application</start-class>
</properties>
Expand Down
6 changes: 4 additions & 2 deletions src/main/java/com/sbapp/Application.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.sbapp;

import java.util.ArrayList;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.SpringBootConfiguration;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
Expand Down Expand Up @@ -29,7 +31,6 @@
"com.sbapp.logic",
"com.sbapp.dao"
})

public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
Expand All @@ -55,7 +56,8 @@ private ApiInfo apiInfo() {
"free to use, free to reproduce",
new Contact("boris", "www.github.com", "[email protected]"),
null,
null);
null,
new ArrayList<>());
}

}

0 comments on commit f931fe5

Please sign in to comment.