Skip to content

Commit

Permalink
0.0.7-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
cstroe committed Dec 14, 2018
1 parent 1f1dd3d commit e092b2e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 6 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repositories {
}

group = "cloud.cosmin.checklister"
version = "0.0.6"
version = "0.0.7-SNAPSHOT"

val compileKotlin: KotlinCompile by tasks

Expand Down Expand Up @@ -71,6 +71,10 @@ dependencies {
// web
compile("org.springframework.boot:spring-boot-starter-web")

// Swagger
compile("io.springfox:springfox-swagger2:2.9.2")
compile("io.springfox:springfox-swagger-ui:2.9.2")

// database
compile("org.springframework.boot:spring-boot-starter-data-jpa")
compile("org.hibernate:hibernate-java8")
Expand Down Expand Up @@ -111,4 +115,4 @@ dependencies {

// integrationTestCompile("org.seleniumhq.selenium:selenium-java:3.13.0")
// integrationTestCompile("org.seleniumhq.selenium:selenium-remote-driver:3.13.0")
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package cloud.cosmin.checklister.config

class SwaggerConfig {
}

0 comments on commit e092b2e

Please sign in to comment.