Skip to content

Commit

Permalink
Move code inside a kotlin-server
Browse files Browse the repository at this point in the history
  • Loading branch information
jmfayard committed Nov 27, 2020
1 parent 2869535 commit 8e760d9
Show file tree
Hide file tree
Showing 24 changed files with 3 additions and 7 deletions.
4 changes: 0 additions & 4 deletions kotlin-jvm/src/main/kotlin/playground/SkrapeIt.kt
Original file line number Diff line number Diff line change
Expand Up @@ -188,10 +188,6 @@ private fun `Parse and verify response of url`() {
" on ease of use and a high level of readability by providing an intuitive DSL. It aims" +
" to be a testing lib, but can also be used to scrape websites in a convenient fashion."
}
findAll {
size toBe 26
toBePresentTimes(26) // shorthand
}
}
}
}
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ java.sourceCompatibility = JavaVersion.VERSION_1_8


dependencies {
implementation(project(":kotlin-server-shared"))
implementation(project(":kotlin-server:kotlin-server-shared"))
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
implementation("org.springframework.boot:spring-boot-starter-data-rest")
implementation("org.springframework.boot:spring-boot-starter-jersey")
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ bootstrapRefreshVersions()
include("kotlin-jvm")
include("kotlin-testing")
include("kotlin-codegen")
include("kotlin-server-shared")
include("kotlin-server-springboot")
include("kotlin-server:kotlin-server-shared")
include("kotlin-server:kotlin-server-springboot")

0 comments on commit 8e760d9

Please sign in to comment.