summaryrefslogtreecommitdiff
path: root/odcsim-core/build.gradle
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2019-04-25 14:19:58 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2019-05-13 20:26:46 +0200
commit164fa3764ef7b75f04a07aa1dbf8b36dd98d7fb9 (patch)
tree313ee9f37cc91d54aa83cf7aaa11f6d6311ab1c0 /odcsim-core/build.gradle
parenteb8197e0057b21af6b526dc97199484e7303d844 (diff)
test: Move implementation test suite into separate package
This change moves the implementation conformance test suite from the test sources of `odcsim-core` to a new `odcsim-engine-tests` module in order to simplify Gradle configuration.
Diffstat (limited to 'odcsim-core/build.gradle')
-rw-r--r--odcsim-core/build.gradle15
1 files changed, 0 insertions, 15 deletions
diff --git a/odcsim-core/build.gradle b/odcsim-core/build.gradle
index 83dfabec..a0cd8450 100644
--- a/odcsim-core/build.gradle
+++ b/odcsim-core/build.gradle
@@ -39,18 +39,3 @@ dependencies {
testImplementation "org.junit.platform:junit-platform-launcher:$junit_platform_version"
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.0.0"
}
-
-/* Create configuration for test suite used by implementors */
-task testJar(type: Jar, dependsOn: testClasses) {
- from sourceSets.test.output
-}
-
-configurations {
- tests
-}
-
-artifacts {
- tests testJar
-}
-
-