-
-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1146 from robstoll/migrate-to-new-mpp
further migration to new mpp
- Loading branch information
Showing
62 changed files
with
395 additions
and
549 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 0 additions & 7 deletions
7
apis/fluent-en_GB/atrium-api-fluent-en_GB-common/build.gradle
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
apis/fluent-en_GB/atrium-api-fluent-en_GB-jvm/build.gradle
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
apis/fluent-en_GB/atrium-api-fluent-en_GB/build.gradle.kts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
description = "A fluent expectation function API in en_GB with a focus on code completion" | ||
|
||
val niokVersion: String by rootProject.extra | ||
|
||
kotlin { | ||
sourceSets { | ||
val commonMain by getting { | ||
dependencies { | ||
api(prefixedProject("logic")) | ||
} | ||
} | ||
|
||
val jvmMain by getting { | ||
dependencies { | ||
implementation("ch.tutteli.niok:niok:$niokVersion") | ||
} | ||
} | ||
|
||
val commonTest by getting { | ||
dependencies { | ||
implementation(prefixedProject("specs")) | ||
} | ||
} | ||
val jvmTest by getting { | ||
dependencies { | ||
implementation(prefixedProject("specs")) | ||
} | ||
} | ||
} | ||
} | ||
|
||
val jacocoAdditional: List<Project> by extra( | ||
listOf( | ||
prefixedProject("translations-en_GB"), | ||
prefixedProject("logic"), | ||
prefixedProject("core") | ||
) | ||
) |
30 changes: 30 additions & 0 deletions
30
apis/fluent-en_GB/extensions/atrium-api-fluent-en_GB-kotlin_1_3/build.gradle.kts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
description = "Kotlin 1.3 specific expectation functions and builders for atrium-api-fluent-en_GB -- will be merged into fluent-en_GB with 1.0.0 at the latest" | ||
|
||
kotlin { | ||
sourceSets { | ||
val commonMain by getting { | ||
dependencies { | ||
api(prefixedProject("api-fluent-en_GB")) | ||
api(prefixedProject("logic-kotlin_1_3")) | ||
} | ||
} | ||
|
||
val commonTest by getting { | ||
dependencies { | ||
implementation(prefixedProject("specs")) | ||
} | ||
} | ||
val jvmTest by getting { | ||
dependencies { | ||
implementation(prefixedProject("specs")) | ||
} | ||
} | ||
|
||
configureEach { | ||
languageSettings.apply { | ||
languageVersion = "1.3" | ||
apiVersion = "1.3" | ||
} | ||
} | ||
} | ||
} |
8 changes: 0 additions & 8 deletions
8
...fluent-en_GB/extensions/kotlin_1_3/atrium-api-fluent-en_GB-kotlin_1_3-common/build.gradle
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
apis/fluent-en_GB/extensions/kotlin_1_3/atrium-api-fluent-en_GB-kotlin_1_3-js/build.gradle
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
apis/fluent-en_GB/extensions/kotlin_1_3/atrium-api-fluent-en_GB-kotlin_1_3-jvm/build.gradle
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
description = "An infix API in en_GB with a focus on code completion." | ||
|
||
val niokVersion: String by rootProject.extra | ||
|
||
kotlin { | ||
sourceSets { | ||
val commonMain by getting { | ||
dependencies { | ||
api(prefixedProject("logic")) | ||
} | ||
} | ||
|
||
val jvmMain by getting { | ||
dependencies { | ||
implementation("ch.tutteli.niok:niok:$niokVersion") | ||
} | ||
} | ||
|
||
val commonTest by getting { | ||
dependencies { | ||
implementation(project(":${rootProject.name}-specs")) { | ||
exclude(module = "${rootProject.name}-translations-en_GB") | ||
} | ||
implementation(prefixedProject("translations-de_CH")) | ||
} | ||
} | ||
val jvmTest by getting { | ||
dependencies { | ||
implementation(project(":${rootProject.name}-specs")) { | ||
exclude(module = "${rootProject.name}-translations-en_GB") | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
val jacocoAdditional: List<Project> by extra( | ||
listOf( | ||
prefixedProject("translations-en_GB"), | ||
prefixedProject("logic"), | ||
prefixedProject("core") | ||
) | ||
) |
30 changes: 30 additions & 0 deletions
30
apis/infix-en_GB/extensions/atrium-api-infix-en_GB-kotlin_1_3/build.gradle.kts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
description = "Kotlin 1.3 specific expectation functions and builders for atrium-api-fluent-en_GB -- will be merged into fluent-en_GB with 1.0.0 at the latest" | ||
|
||
kotlin { | ||
sourceSets { | ||
val commonMain by getting { | ||
dependencies { | ||
api(prefixedProject("api-infix-en_GB")) | ||
api(prefixedProject("logic-kotlin_1_3")) | ||
} | ||
} | ||
|
||
val commonTest by getting { | ||
dependencies { | ||
implementation(prefixedProject("specs")) | ||
} | ||
} | ||
val jvmTest by getting { | ||
dependencies { | ||
implementation(prefixedProject("specs")) | ||
} | ||
} | ||
|
||
configureEach { | ||
languageSettings.apply { | ||
languageVersion = "1.3" | ||
apiVersion = "1.3" | ||
} | ||
} | ||
} | ||
} |
8 changes: 0 additions & 8 deletions
8
apis/infix-en_GB/extensions/kotlin_1_3/atrium-api-infix-en_GB-kotlin_1_3-common/build.gradle
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
apis/infix-en_GB/extensions/kotlin_1_3/atrium-api-infix-en_GB-kotlin_1_3-js/build.gradle
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
apis/infix-en_GB/extensions/kotlin_1_3/atrium-api-infix-en_GB-kotlin_1_3-jvm/build.gradle
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.