diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5a074d945ca61cb4414d7f6d2b958b1423b8286f..433facfa99765228af9b753cf88378fc9d939a88 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -227,7 +227,7 @@ deploy-uc4-load-generator: - .gradle/caches before_script: - export GRADLE_USER_HOME=`pwd`/.gradle - - cd theodolite-quarkus + - cd theodolite build-theodolite-jvm: stage: build @@ -235,8 +235,8 @@ build-theodolite-jvm: script: ./gradlew --build-cache assemble artifacts: paths: - - "theodolite-quarkus/build/lib/*" - - "theodolite-quarkus/build/*-runner.jar" + - "theodolite/build/lib/*" + - "theodolite/build/*-runner.jar" expire_in: 6 hours build-theodolite-native: @@ -247,7 +247,7 @@ build-theodolite-native: when: manual artifacts: paths: - - "theodolite-quarkus/build/*-runner" + - "theodolite/build/*-runner" expire_in: 6 hours test-theodolite: @@ -260,7 +260,7 @@ test-theodolite: artifacts: reports: junit: - - "theodolite-quarkus/**/build/test-results/test/TEST-*.xml" + - "theodolite/**/build/test-results/test/TEST-*.xml" # Disabled for now .ktlint-theodolite: @@ -303,7 +303,7 @@ deploy-theodolite: - if: "$CR_HOST && $CR_ORG && $CR_USER && $CR_PW && $CI_COMMIT_TAG" when: always - changes: - - theodolite-quarkus/**/* + - theodolite/**/* if: "$CR_HOST && $CR_ORG && $CR_USER && $CR_PW" when: always - if: "$CR_HOST && $CR_ORG && $CR_USER && $CR_PW" diff --git a/theodolite-quarkus/.dockerignore b/theodolite/.dockerignore similarity index 100% rename from theodolite-quarkus/.dockerignore rename to theodolite/.dockerignore diff --git a/theodolite-quarkus/.gitignore b/theodolite/.gitignore similarity index 100% rename from theodolite-quarkus/.gitignore rename to theodolite/.gitignore diff --git a/theodolite-quarkus/README.md b/theodolite/README.md similarity index 90% rename from theodolite-quarkus/README.md rename to theodolite/README.md index fc1d1bfe4a9c20a515cf6e69208657f74694d80e..26efe96b4756316971378be810f69f6138613958 100644 --- a/theodolite-quarkus/README.md +++ b/theodolite/README.md @@ -1,4 +1,4 @@ -# Theodolite-quarkus project +# Theodolite project This project uses Quarkus, the Supersonic Subatomic Java Framework. @@ -20,7 +20,7 @@ The application can be packaged using: ./gradlew build ``` -It produces the `theodolite-quarkus-1.0.0-SNAPSHOT-runner.jar` file in the `/build` directory. Be aware that it’s not +It produces the `theodolite-1.0.0-SNAPSHOT-runner.jar` file in the `/build` directory. Be aware that it’s not an _über-jar_ as the dependencies are copied into the `build/lib` directory. If you want to build an _über-jar_, execute the following command: @@ -29,7 +29,7 @@ If you want to build an _über-jar_, execute the following command: ./gradlew build -Dquarkus.package.type=uber-jar ``` -The application is now runnable using `java -jar build/theodolite-quarkus-1.0.0-SNAPSHOT-runner.jar`. +The application is now runnable using `java -jar build/theodolite-1.0.0-SNAPSHOT-runner.jar`. ## Creating a native executable @@ -46,7 +46,7 @@ Or, if you don't have GraalVM installed, you can run the native executable build ``` You can then execute your native executable with: -```./build/theodolite-quarkus-1.0.0-SNAPSHOT-runner``` +```./build/theodolite-1.0.0-SNAPSHOT-runner``` If you want to learn more about building native executables, please consult https://quarkus.io/guides/gradle-tooling. @@ -56,14 +56,14 @@ For the jvm version use: ```shell script ./gradlew build -docker build -f src/main/docker/Dockerfile.jvm -t theodolite-quarkus-jvm . +docker build -f src/main/docker/Dockerfile.jvm -t theodolite-jvm . ``` For the native image version use: ```shell script ./gradlew build -Dquarkus.package.type=native -docker build -f src/main/docker/Dockerfile.native -t theodolite-quarkus-native . +docker build -f src/main/docker/Dockerfile.native -t theodolite-native . ``` ## Execute docker images: @@ -73,13 +73,13 @@ Remember to set the environment variables first. Jvm version: ```shell script -docker run -i --rm theodolite-quarkus-jvm +docker run -i --rm theodolite-jvm ``` Native image version: ```shell script -docker run -i --rm theodolite-quarkus-native +docker run -i --rm theodolite-native ``` ## Environment variables diff --git a/theodolite-quarkus/build.gradle b/theodolite/build.gradle similarity index 100% rename from theodolite-quarkus/build.gradle rename to theodolite/build.gradle diff --git a/theodolite-quarkus/build_jvm.sh b/theodolite/build_jvm.sh similarity index 52% rename from theodolite-quarkus/build_jvm.sh rename to theodolite/build_jvm.sh index 95e2e44427a894a0513e6358b439d23e3eea834b..f4dd32fc5228576f09e95f0e8ac06fa08ea6acc7 100755 --- a/theodolite-quarkus/build_jvm.sh +++ b/theodolite/build_jvm.sh @@ -1,6 +1,6 @@ ./gradlew build -x test -docker build -f src/main/docker/Dockerfile.jvm -t quarkus/theodolite-quarkus-jvm . +docker build -f src/main/docker/Dockerfile.jvm -t quarkus/theodolite-jvm . -docker run -i --rm -p 8080:8080 quarkus/theodolite-quarkus-jvm +docker run -i --rm -p 8080:8080 quarkus/theodolite-jvm diff --git a/theodolite-quarkus/build_native.sh b/theodolite/build_native.sh similarity index 61% rename from theodolite-quarkus/build_native.sh rename to theodolite/build_native.sh index 1effa3268ce5b863a680c6f4bdc6b4b632b2d4c6..c2d7d81f35a24af951005bb30c52a8ab494ddb64 100755 --- a/theodolite-quarkus/build_native.sh +++ b/theodolite/build_native.sh @@ -1,6 +1,6 @@ ./gradlew build -Dquarkus.package.type=native -x test -docker build -f src/main/docker/Dockerfile.native -t quarkus/theodolite-quarkus . +docker build -f src/main/docker/Dockerfile.native -t quarkus/theodolite . -docker run -i --rm -p 8080:8080 quarkus/theodolite-quarkus +docker run -i --rm -p 8080:8080 quarkus/theodolite diff --git a/theodolite-quarkus/config/README.md b/theodolite/config/README.md similarity index 100% rename from theodolite-quarkus/config/README.md rename to theodolite/config/README.md diff --git a/theodolite-quarkus/config/aggregation-service.yaml b/theodolite/config/aggregation-service.yaml similarity index 100% rename from theodolite-quarkus/config/aggregation-service.yaml rename to theodolite/config/aggregation-service.yaml diff --git a/theodolite-quarkus/config/example-execution-yaml-resource.yaml b/theodolite/config/example-execution-yaml-resource.yaml similarity index 100% rename from theodolite-quarkus/config/example-execution-yaml-resource.yaml rename to theodolite/config/example-execution-yaml-resource.yaml diff --git a/theodolite-quarkus/config/example-operator-execution.yaml b/theodolite/config/example-operator-execution.yaml similarity index 100% rename from theodolite-quarkus/config/example-operator-execution.yaml rename to theodolite/config/example-operator-execution.yaml diff --git a/theodolite-quarkus/config/jmx-configmap.yaml b/theodolite/config/jmx-configmap.yaml similarity index 100% rename from theodolite-quarkus/config/jmx-configmap.yaml rename to theodolite/config/jmx-configmap.yaml diff --git a/theodolite-quarkus/config/service-monitor.yaml b/theodolite/config/service-monitor.yaml similarity index 100% rename from theodolite-quarkus/config/service-monitor.yaml rename to theodolite/config/service-monitor.yaml diff --git a/theodolite-quarkus/config/uc1-kstreams-deployment.yaml b/theodolite/config/uc1-kstreams-deployment.yaml similarity index 100% rename from theodolite-quarkus/config/uc1-kstreams-deployment.yaml rename to theodolite/config/uc1-kstreams-deployment.yaml diff --git a/theodolite-quarkus/config/uc1-load-generator-deployment.yaml b/theodolite/config/uc1-load-generator-deployment.yaml similarity index 100% rename from theodolite-quarkus/config/uc1-load-generator-deployment.yaml rename to theodolite/config/uc1-load-generator-deployment.yaml diff --git a/theodolite-quarkus/config/uc1-load-generator-service.yaml b/theodolite/config/uc1-load-generator-service.yaml similarity index 100% rename from theodolite-quarkus/config/uc1-load-generator-service.yaml rename to theodolite/config/uc1-load-generator-service.yaml diff --git a/theodolite-quarkus/config/uc1-service-monitor.yaml b/theodolite/config/uc1-service-monitor.yaml similarity index 100% rename from theodolite-quarkus/config/uc1-service-monitor.yaml rename to theodolite/config/uc1-service-monitor.yaml diff --git a/theodolite-quarkus/crd/crd-benchmark.yaml b/theodolite/crd/crd-benchmark.yaml similarity index 100% rename from theodolite-quarkus/crd/crd-benchmark.yaml rename to theodolite/crd/crd-benchmark.yaml diff --git a/theodolite-quarkus/crd/crd-execution.yaml b/theodolite/crd/crd-execution.yaml similarity index 100% rename from theodolite-quarkus/crd/crd-execution.yaml rename to theodolite/crd/crd-execution.yaml diff --git a/theodolite-quarkus/examples/operator/example-benchmark.yaml b/theodolite/examples/operator/example-benchmark.yaml similarity index 100% rename from theodolite-quarkus/examples/operator/example-benchmark.yaml rename to theodolite/examples/operator/example-benchmark.yaml diff --git a/theodolite-quarkus/examples/operator/example-execution.yaml b/theodolite/examples/operator/example-execution.yaml similarity index 100% rename from theodolite-quarkus/examples/operator/example-execution.yaml rename to theodolite/examples/operator/example-execution.yaml diff --git a/theodolite-quarkus/examples/standalone/example-benchmark.yaml b/theodolite/examples/standalone/example-benchmark.yaml similarity index 100% rename from theodolite-quarkus/examples/standalone/example-benchmark.yaml rename to theodolite/examples/standalone/example-benchmark.yaml diff --git a/theodolite-quarkus/examples/standalone/example-execution.yaml b/theodolite/examples/standalone/example-execution.yaml similarity index 100% rename from theodolite-quarkus/examples/standalone/example-execution.yaml rename to theodolite/examples/standalone/example-execution.yaml diff --git a/theodolite-quarkus/gradle.properties b/theodolite/gradle.properties similarity index 100% rename from theodolite-quarkus/gradle.properties rename to theodolite/gradle.properties diff --git a/theodolite-quarkus/gradle/wrapper/gradle-wrapper.jar b/theodolite/gradle/wrapper/gradle-wrapper.jar similarity index 100% rename from theodolite-quarkus/gradle/wrapper/gradle-wrapper.jar rename to theodolite/gradle/wrapper/gradle-wrapper.jar diff --git a/theodolite-quarkus/gradle/wrapper/gradle-wrapper.properties b/theodolite/gradle/wrapper/gradle-wrapper.properties similarity index 100% rename from theodolite-quarkus/gradle/wrapper/gradle-wrapper.properties rename to theodolite/gradle/wrapper/gradle-wrapper.properties diff --git a/theodolite-quarkus/gradlew b/theodolite/gradlew similarity index 100% rename from theodolite-quarkus/gradlew rename to theodolite/gradlew diff --git a/theodolite-quarkus/gradlew.bat b/theodolite/gradlew.bat similarity index 100% rename from theodolite-quarkus/gradlew.bat rename to theodolite/gradlew.bat diff --git a/theodolite-quarkus/settings.gradle b/theodolite/settings.gradle similarity index 84% rename from theodolite-quarkus/settings.gradle rename to theodolite/settings.gradle index 8a0af4a6504623f11c275c06e538537726935255..a726b4afa4cfdc7433dbd408808ab0fd6a766d6a 100644 --- a/theodolite-quarkus/settings.gradle +++ b/theodolite/settings.gradle @@ -8,4 +8,4 @@ pluginManagement { id "${quarkusPluginId}" version "${quarkusPluginVersion}" } } -rootProject.name='theodolite-quarkus' +rootProject.name='theodolite' diff --git a/theodolite-quarkus/src/main/docker/Dockerfile.fast-jar b/theodolite/src/main/docker/Dockerfile.fast-jar similarity index 93% rename from theodolite-quarkus/src/main/docker/Dockerfile.fast-jar rename to theodolite/src/main/docker/Dockerfile.fast-jar index 32a4443a5d0291c8190acf8e59419d3d4825b2fd..16853dd8f064565ae017bee9dae3597b63085006 100644 --- a/theodolite-quarkus/src/main/docker/Dockerfile.fast-jar +++ b/theodolite/src/main/docker/Dockerfile.fast-jar @@ -7,18 +7,18 @@ # # Then, build the image with: # -# docker build -f src/main/docker/Dockerfile.fast-jar -t quarkus/theodolite-quarkus-fast-jar . +# docker build -f src/main/docker/Dockerfile.fast-jar -t quarkus/theodolite-fast-jar . # # Then run the container using: # -# docker run -i --rm -p 8080:8080 quarkus/theodolite-quarkus-fast-jar +# docker run -i --rm -p 8080:8080 quarkus/theodolite-fast-jar # # If you want to include the debug port into your docker image # you will have to expose the debug port (default 5005) like this : EXPOSE 8080 5050 # # Then run the container using : # -# docker run -i --rm -p 8080:8080 -p 5005:5005 -e JAVA_ENABLE_DEBUG="true" quarkus/theodolite-quarkus-fast-jar +# docker run -i --rm -p 8080:8080 -p 5005:5005 -e JAVA_ENABLE_DEBUG="true" quarkus/theodolite-fast-jar # ### FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3 diff --git a/theodolite-quarkus/src/main/docker/Dockerfile.jvm b/theodolite/src/main/docker/Dockerfile.jvm similarity index 93% rename from theodolite-quarkus/src/main/docker/Dockerfile.jvm rename to theodolite/src/main/docker/Dockerfile.jvm index 6733d5d441e8292e02547cf59131c706575e9d86..4800a03181194772f854a85a9b0ba0eed17365ec 100644 --- a/theodolite-quarkus/src/main/docker/Dockerfile.jvm +++ b/theodolite/src/main/docker/Dockerfile.jvm @@ -7,18 +7,18 @@ # # Then, build the image with: # -# docker build -f src/main/docker/Dockerfile.jvm -t quarkus/theodolite-quarkus-jvm . +# docker build -f src/main/docker/Dockerfile.jvm -t quarkus/theodolite-jvm . # # Then run the container using: # -# docker run -i --rm -p 8080:8080 quarkus/theodolite-quarkus-jvm +# docker run -i --rm -p 8080:8080 quarkus/theodolite-jvm # # If you want to include the debug port into your docker image # you will have to expose the debug port (default 5005) like this : EXPOSE 8080 5050 # # Then run the container using : # -# docker run -i --rm -p 8080:8080 -p 5005:5005 -e JAVA_ENABLE_DEBUG="true" quarkus/theodolite-quarkus-jvm +# docker run -i --rm -p 8080:8080 -p 5005:5005 -e JAVA_ENABLE_DEBUG="true" quarkus/theodolite-jvm # ### FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3 diff --git a/theodolite-quarkus/src/main/docker/Dockerfile.native b/theodolite/src/main/docker/Dockerfile.native similarity index 89% rename from theodolite-quarkus/src/main/docker/Dockerfile.native rename to theodolite/src/main/docker/Dockerfile.native index 29836a7148b573c3051c33341718b06008fa07e2..d03e77564f783b76d202986ebd7c1e336f013779 100644 --- a/theodolite-quarkus/src/main/docker/Dockerfile.native +++ b/theodolite/src/main/docker/Dockerfile.native @@ -7,11 +7,11 @@ # # Then, build the image with: # -# docker build -f src/main/docker/Dockerfile.native -t quarkus/theodolite-quarkus . +# docker build -f src/main/docker/Dockerfile.native -t quarkus/theodolite . # # Then run the container using: # -# docker run -i --rm -p 8080:8080 quarkus/theodolite-quarkus +# docker run -i --rm -p 8080:8080 quarkus/theodolite # ### FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3 diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/Benchmark.kt b/theodolite/src/main/kotlin/theodolite/benchmark/Benchmark.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/benchmark/Benchmark.kt rename to theodolite/src/main/kotlin/theodolite/benchmark/Benchmark.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/BenchmarkDeployment.kt b/theodolite/src/main/kotlin/theodolite/benchmark/BenchmarkDeployment.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/benchmark/BenchmarkDeployment.kt rename to theodolite/src/main/kotlin/theodolite/benchmark/BenchmarkDeployment.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/BenchmarkExecution.kt b/theodolite/src/main/kotlin/theodolite/benchmark/BenchmarkExecution.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/benchmark/BenchmarkExecution.kt rename to theodolite/src/main/kotlin/theodolite/benchmark/BenchmarkExecution.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KafkaLagExporterRemover.kt b/theodolite/src/main/kotlin/theodolite/benchmark/KafkaLagExporterRemover.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KafkaLagExporterRemover.kt rename to theodolite/src/main/kotlin/theodolite/benchmark/KafkaLagExporterRemover.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt b/theodolite/src/main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt rename to theodolite/src/main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt b/theodolite/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt rename to theodolite/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/evaluation/AnalysisExecutor.kt b/theodolite/src/main/kotlin/theodolite/evaluation/AnalysisExecutor.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/evaluation/AnalysisExecutor.kt rename to theodolite/src/main/kotlin/theodolite/evaluation/AnalysisExecutor.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/evaluation/ExternalSloChecker.kt b/theodolite/src/main/kotlin/theodolite/evaluation/ExternalSloChecker.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/evaluation/ExternalSloChecker.kt rename to theodolite/src/main/kotlin/theodolite/evaluation/ExternalSloChecker.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/evaluation/MetricFetcher.kt b/theodolite/src/main/kotlin/theodolite/evaluation/MetricFetcher.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/evaluation/MetricFetcher.kt rename to theodolite/src/main/kotlin/theodolite/evaluation/MetricFetcher.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/evaluation/SloChecker.kt b/theodolite/src/main/kotlin/theodolite/evaluation/SloChecker.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/evaluation/SloChecker.kt rename to theodolite/src/main/kotlin/theodolite/evaluation/SloChecker.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/evaluation/SloCheckerFactory.kt b/theodolite/src/main/kotlin/theodolite/evaluation/SloCheckerFactory.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/evaluation/SloCheckerFactory.kt rename to theodolite/src/main/kotlin/theodolite/evaluation/SloCheckerFactory.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/BenchmarkExecutor.kt b/theodolite/src/main/kotlin/theodolite/execution/BenchmarkExecutor.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/execution/BenchmarkExecutor.kt rename to theodolite/src/main/kotlin/theodolite/execution/BenchmarkExecutor.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/BenchmarkExecutorImpl.kt b/theodolite/src/main/kotlin/theodolite/execution/BenchmarkExecutorImpl.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/execution/BenchmarkExecutorImpl.kt rename to theodolite/src/main/kotlin/theodolite/execution/BenchmarkExecutorImpl.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/Main.kt b/theodolite/src/main/kotlin/theodolite/execution/Main.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/execution/Main.kt rename to theodolite/src/main/kotlin/theodolite/execution/Main.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/Shutdown.kt b/theodolite/src/main/kotlin/theodolite/execution/Shutdown.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/execution/Shutdown.kt rename to theodolite/src/main/kotlin/theodolite/execution/Shutdown.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/TheodoliteExecutor.kt b/theodolite/src/main/kotlin/theodolite/execution/TheodoliteExecutor.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/execution/TheodoliteExecutor.kt rename to theodolite/src/main/kotlin/theodolite/execution/TheodoliteExecutor.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/TheodoliteYamlExecutor.kt b/theodolite/src/main/kotlin/theodolite/execution/TheodoliteYamlExecutor.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/execution/TheodoliteYamlExecutor.kt rename to theodolite/src/main/kotlin/theodolite/execution/TheodoliteYamlExecutor.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/AbstractStateHandler.kt b/theodolite/src/main/kotlin/theodolite/execution/operator/AbstractStateHandler.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/AbstractStateHandler.kt rename to theodolite/src/main/kotlin/theodolite/execution/operator/AbstractStateHandler.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/ClusterSetup.kt b/theodolite/src/main/kotlin/theodolite/execution/operator/ClusterSetup.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/ClusterSetup.kt rename to theodolite/src/main/kotlin/theodolite/execution/operator/ClusterSetup.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/ExecutionEventHandler.kt b/theodolite/src/main/kotlin/theodolite/execution/operator/ExecutionEventHandler.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/ExecutionEventHandler.kt rename to theodolite/src/main/kotlin/theodolite/execution/operator/ExecutionEventHandler.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/ExecutionStateHandler.kt b/theodolite/src/main/kotlin/theodolite/execution/operator/ExecutionStateHandler.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/ExecutionStateHandler.kt rename to theodolite/src/main/kotlin/theodolite/execution/operator/ExecutionStateHandler.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/LeaderElector.kt b/theodolite/src/main/kotlin/theodolite/execution/operator/LeaderElector.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/LeaderElector.kt rename to theodolite/src/main/kotlin/theodolite/execution/operator/LeaderElector.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/StateHandler.kt b/theodolite/src/main/kotlin/theodolite/execution/operator/StateHandler.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/StateHandler.kt rename to theodolite/src/main/kotlin/theodolite/execution/operator/StateHandler.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/TheodoliteController.kt b/theodolite/src/main/kotlin/theodolite/execution/operator/TheodoliteController.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/TheodoliteController.kt rename to theodolite/src/main/kotlin/theodolite/execution/operator/TheodoliteController.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/TheodoliteOperator.kt b/theodolite/src/main/kotlin/theodolite/execution/operator/TheodoliteOperator.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/TheodoliteOperator.kt rename to theodolite/src/main/kotlin/theodolite/execution/operator/TheodoliteOperator.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/k8s/CustomResourceWrapper.kt b/theodolite/src/main/kotlin/theodolite/k8s/CustomResourceWrapper.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/k8s/CustomResourceWrapper.kt rename to theodolite/src/main/kotlin/theodolite/k8s/CustomResourceWrapper.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/k8s/K8sContextFactory.kt b/theodolite/src/main/kotlin/theodolite/k8s/K8sContextFactory.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/k8s/K8sContextFactory.kt rename to theodolite/src/main/kotlin/theodolite/k8s/K8sContextFactory.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/k8s/K8sManager.kt b/theodolite/src/main/kotlin/theodolite/k8s/K8sManager.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/k8s/K8sManager.kt rename to theodolite/src/main/kotlin/theodolite/k8s/K8sManager.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/k8s/K8sResourceLoader.kt b/theodolite/src/main/kotlin/theodolite/k8s/K8sResourceLoader.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/k8s/K8sResourceLoader.kt rename to theodolite/src/main/kotlin/theodolite/k8s/K8sResourceLoader.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/k8s/TopicManager.kt b/theodolite/src/main/kotlin/theodolite/k8s/TopicManager.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/k8s/TopicManager.kt rename to theodolite/src/main/kotlin/theodolite/k8s/TopicManager.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/model/crd/BenchmarkCRD.kt b/theodolite/src/main/kotlin/theodolite/model/crd/BenchmarkCRD.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/model/crd/BenchmarkCRD.kt rename to theodolite/src/main/kotlin/theodolite/model/crd/BenchmarkCRD.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/model/crd/BenchmarkExecutionList.kt b/theodolite/src/main/kotlin/theodolite/model/crd/BenchmarkExecutionList.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/model/crd/BenchmarkExecutionList.kt rename to theodolite/src/main/kotlin/theodolite/model/crd/BenchmarkExecutionList.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/model/crd/ExecutionCRD.kt b/theodolite/src/main/kotlin/theodolite/model/crd/ExecutionCRD.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/model/crd/ExecutionCRD.kt rename to theodolite/src/main/kotlin/theodolite/model/crd/ExecutionCRD.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/model/crd/ExecutionStatus.kt b/theodolite/src/main/kotlin/theodolite/model/crd/ExecutionStatus.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/model/crd/ExecutionStatus.kt rename to theodolite/src/main/kotlin/theodolite/model/crd/ExecutionStatus.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/model/crd/KubernetesBenchmarkList.kt b/theodolite/src/main/kotlin/theodolite/model/crd/KubernetesBenchmarkList.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/model/crd/KubernetesBenchmarkList.kt rename to theodolite/src/main/kotlin/theodolite/model/crd/KubernetesBenchmarkList.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/model/crd/States.kt b/theodolite/src/main/kotlin/theodolite/model/crd/States.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/model/crd/States.kt rename to theodolite/src/main/kotlin/theodolite/model/crd/States.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/AbstractPatcher.kt b/theodolite/src/main/kotlin/theodolite/patcher/AbstractPatcher.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/patcher/AbstractPatcher.kt rename to theodolite/src/main/kotlin/theodolite/patcher/AbstractPatcher.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/EnvVarPatcher.kt b/theodolite/src/main/kotlin/theodolite/patcher/EnvVarPatcher.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/patcher/EnvVarPatcher.kt rename to theodolite/src/main/kotlin/theodolite/patcher/EnvVarPatcher.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ImagePatcher.kt b/theodolite/src/main/kotlin/theodolite/patcher/ImagePatcher.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/patcher/ImagePatcher.kt rename to theodolite/src/main/kotlin/theodolite/patcher/ImagePatcher.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/LabelPatcher.kt b/theodolite/src/main/kotlin/theodolite/patcher/LabelPatcher.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/patcher/LabelPatcher.kt rename to theodolite/src/main/kotlin/theodolite/patcher/LabelPatcher.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/NodeSelectorPatcher.kt b/theodolite/src/main/kotlin/theodolite/patcher/NodeSelectorPatcher.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/patcher/NodeSelectorPatcher.kt rename to theodolite/src/main/kotlin/theodolite/patcher/NodeSelectorPatcher.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/NumNestedGroupsLoadGeneratorReplicaPatcher.kt b/theodolite/src/main/kotlin/theodolite/patcher/NumNestedGroupsLoadGeneratorReplicaPatcher.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/patcher/NumNestedGroupsLoadGeneratorReplicaPatcher.kt rename to theodolite/src/main/kotlin/theodolite/patcher/NumNestedGroupsLoadGeneratorReplicaPatcher.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/NumSensorsLoadGeneratorReplicaPatcher.kt b/theodolite/src/main/kotlin/theodolite/patcher/NumSensorsLoadGeneratorReplicaPatcher.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/patcher/NumSensorsLoadGeneratorReplicaPatcher.kt rename to theodolite/src/main/kotlin/theodolite/patcher/NumSensorsLoadGeneratorReplicaPatcher.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/Patcher.kt b/theodolite/src/main/kotlin/theodolite/patcher/Patcher.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/patcher/Patcher.kt rename to theodolite/src/main/kotlin/theodolite/patcher/Patcher.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/PatcherDefinitionFactory.kt b/theodolite/src/main/kotlin/theodolite/patcher/PatcherDefinitionFactory.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/patcher/PatcherDefinitionFactory.kt rename to theodolite/src/main/kotlin/theodolite/patcher/PatcherDefinitionFactory.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/PatcherFactory.kt b/theodolite/src/main/kotlin/theodolite/patcher/PatcherFactory.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/patcher/PatcherFactory.kt rename to theodolite/src/main/kotlin/theodolite/patcher/PatcherFactory.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ReplicaPatcher.kt b/theodolite/src/main/kotlin/theodolite/patcher/ReplicaPatcher.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/patcher/ReplicaPatcher.kt rename to theodolite/src/main/kotlin/theodolite/patcher/ReplicaPatcher.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ResourceLimitPatcher.kt b/theodolite/src/main/kotlin/theodolite/patcher/ResourceLimitPatcher.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/patcher/ResourceLimitPatcher.kt rename to theodolite/src/main/kotlin/theodolite/patcher/ResourceLimitPatcher.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ResourceRequestPatcher.kt b/theodolite/src/main/kotlin/theodolite/patcher/ResourceRequestPatcher.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/patcher/ResourceRequestPatcher.kt rename to theodolite/src/main/kotlin/theodolite/patcher/ResourceRequestPatcher.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/SchedulerNamePatcher.kt b/theodolite/src/main/kotlin/theodolite/patcher/SchedulerNamePatcher.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/patcher/SchedulerNamePatcher.kt rename to theodolite/src/main/kotlin/theodolite/patcher/SchedulerNamePatcher.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/StrategyFactory.kt b/theodolite/src/main/kotlin/theodolite/strategies/StrategyFactory.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/strategies/StrategyFactory.kt rename to theodolite/src/main/kotlin/theodolite/strategies/StrategyFactory.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/restriction/LowerBoundRestriction.kt b/theodolite/src/main/kotlin/theodolite/strategies/restriction/LowerBoundRestriction.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/strategies/restriction/LowerBoundRestriction.kt rename to theodolite/src/main/kotlin/theodolite/strategies/restriction/LowerBoundRestriction.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/restriction/RestrictionStrategy.kt b/theodolite/src/main/kotlin/theodolite/strategies/restriction/RestrictionStrategy.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/strategies/restriction/RestrictionStrategy.kt rename to theodolite/src/main/kotlin/theodolite/strategies/restriction/RestrictionStrategy.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/BinarySearch.kt b/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/BinarySearch.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/BinarySearch.kt rename to theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/BinarySearch.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/CompositeStrategy.kt b/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/CompositeStrategy.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/CompositeStrategy.kt rename to theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/CompositeStrategy.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/FullSearch.kt b/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/FullSearch.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/FullSearch.kt rename to theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/FullSearch.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/LinearSearch.kt b/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/LinearSearch.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/LinearSearch.kt rename to theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/LinearSearch.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/SearchStrategy.kt b/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/SearchStrategy.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/SearchStrategy.kt rename to theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/SearchStrategy.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/util/Config.kt b/theodolite/src/main/kotlin/theodolite/util/Config.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/util/Config.kt rename to theodolite/src/main/kotlin/theodolite/util/Config.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/util/ConfigurationOverride.kt b/theodolite/src/main/kotlin/theodolite/util/ConfigurationOverride.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/util/ConfigurationOverride.kt rename to theodolite/src/main/kotlin/theodolite/util/ConfigurationOverride.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/util/DeploymentFailedException.kt b/theodolite/src/main/kotlin/theodolite/util/DeploymentFailedException.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/util/DeploymentFailedException.kt rename to theodolite/src/main/kotlin/theodolite/util/DeploymentFailedException.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/util/IOHandler.kt b/theodolite/src/main/kotlin/theodolite/util/IOHandler.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/util/IOHandler.kt rename to theodolite/src/main/kotlin/theodolite/util/IOHandler.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/util/InvalidPatcherConfigurationException.kt b/theodolite/src/main/kotlin/theodolite/util/InvalidPatcherConfigurationException.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/util/InvalidPatcherConfigurationException.kt rename to theodolite/src/main/kotlin/theodolite/util/InvalidPatcherConfigurationException.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/util/KafkaConfig.kt b/theodolite/src/main/kotlin/theodolite/util/KafkaConfig.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/util/KafkaConfig.kt rename to theodolite/src/main/kotlin/theodolite/util/KafkaConfig.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/util/LoadDimension.kt b/theodolite/src/main/kotlin/theodolite/util/LoadDimension.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/util/LoadDimension.kt rename to theodolite/src/main/kotlin/theodolite/util/LoadDimension.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/util/Parser.kt b/theodolite/src/main/kotlin/theodolite/util/Parser.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/util/Parser.kt rename to theodolite/src/main/kotlin/theodolite/util/Parser.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/util/PatcherDefinition.kt b/theodolite/src/main/kotlin/theodolite/util/PatcherDefinition.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/util/PatcherDefinition.kt rename to theodolite/src/main/kotlin/theodolite/util/PatcherDefinition.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/util/PrometheusResponse.kt b/theodolite/src/main/kotlin/theodolite/util/PrometheusResponse.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/util/PrometheusResponse.kt rename to theodolite/src/main/kotlin/theodolite/util/PrometheusResponse.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/util/Resource.kt b/theodolite/src/main/kotlin/theodolite/util/Resource.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/util/Resource.kt rename to theodolite/src/main/kotlin/theodolite/util/Resource.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/util/Results.kt b/theodolite/src/main/kotlin/theodolite/util/Results.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/util/Results.kt rename to theodolite/src/main/kotlin/theodolite/util/Results.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/util/TypeName.kt b/theodolite/src/main/kotlin/theodolite/util/TypeName.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/util/TypeName.kt rename to theodolite/src/main/kotlin/theodolite/util/TypeName.kt diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/util/YamlParser.kt b/theodolite/src/main/kotlin/theodolite/util/YamlParser.kt similarity index 100% rename from theodolite-quarkus/src/main/kotlin/theodolite/util/YamlParser.kt rename to theodolite/src/main/kotlin/theodolite/util/YamlParser.kt diff --git a/theodolite-quarkus/src/main/resources/application.properties b/theodolite/src/main/resources/application.properties similarity index 100% rename from theodolite-quarkus/src/main/resources/application.properties rename to theodolite/src/main/resources/application.properties diff --git a/theodolite-quarkus/src/main/resources/operator/example-execution-k8s-resource.yaml b/theodolite/src/main/resources/operator/example-execution-k8s-resource.yaml similarity index 100% rename from theodolite-quarkus/src/main/resources/operator/example-execution-k8s-resource.yaml rename to theodolite/src/main/resources/operator/example-execution-k8s-resource.yaml diff --git a/theodolite-quarkus/src/test/kotlin/theodolite/CompositeStrategyTest.kt b/theodolite/src/test/kotlin/theodolite/CompositeStrategyTest.kt similarity index 100% rename from theodolite-quarkus/src/test/kotlin/theodolite/CompositeStrategyTest.kt rename to theodolite/src/test/kotlin/theodolite/CompositeStrategyTest.kt diff --git a/theodolite-quarkus/src/test/kotlin/theodolite/ResourceLimitPatcherTest.kt b/theodolite/src/test/kotlin/theodolite/ResourceLimitPatcherTest.kt similarity index 100% rename from theodolite-quarkus/src/test/kotlin/theodolite/ResourceLimitPatcherTest.kt rename to theodolite/src/test/kotlin/theodolite/ResourceLimitPatcherTest.kt diff --git a/theodolite-quarkus/src/test/kotlin/theodolite/ResourceRequestPatcherTest.kt b/theodolite/src/test/kotlin/theodolite/ResourceRequestPatcherTest.kt similarity index 100% rename from theodolite-quarkus/src/test/kotlin/theodolite/ResourceRequestPatcherTest.kt rename to theodolite/src/test/kotlin/theodolite/ResourceRequestPatcherTest.kt diff --git a/theodolite-quarkus/src/test/kotlin/theodolite/TestBenchmark.kt b/theodolite/src/test/kotlin/theodolite/TestBenchmark.kt similarity index 100% rename from theodolite-quarkus/src/test/kotlin/theodolite/TestBenchmark.kt rename to theodolite/src/test/kotlin/theodolite/TestBenchmark.kt diff --git a/theodolite-quarkus/src/test/kotlin/theodolite/TestBenchmarkDeployment.kt b/theodolite/src/test/kotlin/theodolite/TestBenchmarkDeployment.kt similarity index 100% rename from theodolite-quarkus/src/test/kotlin/theodolite/TestBenchmarkDeployment.kt rename to theodolite/src/test/kotlin/theodolite/TestBenchmarkDeployment.kt diff --git a/theodolite-quarkus/src/test/kotlin/theodolite/TestBenchmarkExecutorImpl.kt b/theodolite/src/test/kotlin/theodolite/TestBenchmarkExecutorImpl.kt similarity index 100% rename from theodolite-quarkus/src/test/kotlin/theodolite/TestBenchmarkExecutorImpl.kt rename to theodolite/src/test/kotlin/theodolite/TestBenchmarkExecutorImpl.kt diff --git a/theodolite-quarkus/src/test/kotlin/theodolite/execution/operator/BenchmarkCRDummy.kt b/theodolite/src/test/kotlin/theodolite/execution/operator/BenchmarkCRDummy.kt similarity index 100% rename from theodolite-quarkus/src/test/kotlin/theodolite/execution/operator/BenchmarkCRDummy.kt rename to theodolite/src/test/kotlin/theodolite/execution/operator/BenchmarkCRDummy.kt diff --git a/theodolite-quarkus/src/test/kotlin/theodolite/execution/operator/ControllerTest.kt b/theodolite/src/test/kotlin/theodolite/execution/operator/ControllerTest.kt similarity index 100% rename from theodolite-quarkus/src/test/kotlin/theodolite/execution/operator/ControllerTest.kt rename to theodolite/src/test/kotlin/theodolite/execution/operator/ControllerTest.kt diff --git a/theodolite-quarkus/src/test/kotlin/theodolite/execution/operator/ExecutionCRDummy.kt b/theodolite/src/test/kotlin/theodolite/execution/operator/ExecutionCRDummy.kt similarity index 100% rename from theodolite-quarkus/src/test/kotlin/theodolite/execution/operator/ExecutionCRDummy.kt rename to theodolite/src/test/kotlin/theodolite/execution/operator/ExecutionCRDummy.kt diff --git a/theodolite-quarkus/src/test/kotlin/theodolite/execution/operator/ExecutionEventHandlerTest.kt b/theodolite/src/test/kotlin/theodolite/execution/operator/ExecutionEventHandlerTest.kt similarity index 100% rename from theodolite-quarkus/src/test/kotlin/theodolite/execution/operator/ExecutionEventHandlerTest.kt rename to theodolite/src/test/kotlin/theodolite/execution/operator/ExecutionEventHandlerTest.kt diff --git a/theodolite-quarkus/src/test/kotlin/theodolite/execution/operator/StateHandlerTest.kt b/theodolite/src/test/kotlin/theodolite/execution/operator/StateHandlerTest.kt similarity index 100% rename from theodolite-quarkus/src/test/kotlin/theodolite/execution/operator/StateHandlerTest.kt rename to theodolite/src/test/kotlin/theodolite/execution/operator/StateHandlerTest.kt diff --git a/theodolite-quarkus/src/test/kotlin/theodolite/k8s/K8sManagerTest.kt b/theodolite/src/test/kotlin/theodolite/k8s/K8sManagerTest.kt similarity index 100% rename from theodolite-quarkus/src/test/kotlin/theodolite/k8s/K8sManagerTest.kt rename to theodolite/src/test/kotlin/theodolite/k8s/K8sManagerTest.kt diff --git a/theodolite-quarkus/src/test/kotlin/theodolite/k8s/K8sResourceLoaderTest.kt b/theodolite/src/test/kotlin/theodolite/k8s/K8sResourceLoaderTest.kt similarity index 100% rename from theodolite-quarkus/src/test/kotlin/theodolite/k8s/K8sResourceLoaderTest.kt rename to theodolite/src/test/kotlin/theodolite/k8s/K8sResourceLoaderTest.kt diff --git a/theodolite-quarkus/src/test/kotlin/theodolite/strategies/restriction/LowerBoundRestrictionTest.kt b/theodolite/src/test/kotlin/theodolite/strategies/restriction/LowerBoundRestrictionTest.kt similarity index 100% rename from theodolite-quarkus/src/test/kotlin/theodolite/strategies/restriction/LowerBoundRestrictionTest.kt rename to theodolite/src/test/kotlin/theodolite/strategies/restriction/LowerBoundRestrictionTest.kt diff --git a/theodolite-quarkus/src/test/kotlin/theodolite/util/IOHandlerTest.kt b/theodolite/src/test/kotlin/theodolite/util/IOHandlerTest.kt similarity index 100% rename from theodolite-quarkus/src/test/kotlin/theodolite/util/IOHandlerTest.kt rename to theodolite/src/test/kotlin/theodolite/util/IOHandlerTest.kt diff --git a/theodolite-quarkus/src/test/kotlin/theodolite/util/ResultsTest.kt b/theodolite/src/test/kotlin/theodolite/util/ResultsTest.kt similarity index 100% rename from theodolite-quarkus/src/test/kotlin/theodolite/util/ResultsTest.kt rename to theodolite/src/test/kotlin/theodolite/util/ResultsTest.kt diff --git a/theodolite-quarkus/src/test/resources/cpu-deployment.yaml b/theodolite/src/test/resources/cpu-deployment.yaml similarity index 100% rename from theodolite-quarkus/src/test/resources/cpu-deployment.yaml rename to theodolite/src/test/resources/cpu-deployment.yaml diff --git a/theodolite-quarkus/src/test/resources/cpu-memory-deployment.yaml b/theodolite/src/test/resources/cpu-memory-deployment.yaml similarity index 100% rename from theodolite-quarkus/src/test/resources/cpu-memory-deployment.yaml rename to theodolite/src/test/resources/cpu-memory-deployment.yaml diff --git a/theodolite-quarkus/src/test/resources/k8s-resource-files/test-benchmark.yaml b/theodolite/src/test/resources/k8s-resource-files/test-benchmark.yaml similarity index 100% rename from theodolite-quarkus/src/test/resources/k8s-resource-files/test-benchmark.yaml rename to theodolite/src/test/resources/k8s-resource-files/test-benchmark.yaml diff --git a/theodolite-quarkus/src/test/resources/k8s-resource-files/test-configmap.yaml b/theodolite/src/test/resources/k8s-resource-files/test-configmap.yaml similarity index 100% rename from theodolite-quarkus/src/test/resources/k8s-resource-files/test-configmap.yaml rename to theodolite/src/test/resources/k8s-resource-files/test-configmap.yaml diff --git a/theodolite-quarkus/src/test/resources/k8s-resource-files/test-deployment.yaml b/theodolite/src/test/resources/k8s-resource-files/test-deployment.yaml similarity index 100% rename from theodolite-quarkus/src/test/resources/k8s-resource-files/test-deployment.yaml rename to theodolite/src/test/resources/k8s-resource-files/test-deployment.yaml diff --git a/theodolite-quarkus/src/test/resources/k8s-resource-files/test-execution-update.yaml b/theodolite/src/test/resources/k8s-resource-files/test-execution-update.yaml similarity index 100% rename from theodolite-quarkus/src/test/resources/k8s-resource-files/test-execution-update.yaml rename to theodolite/src/test/resources/k8s-resource-files/test-execution-update.yaml diff --git a/theodolite-quarkus/src/test/resources/k8s-resource-files/test-execution.yaml b/theodolite/src/test/resources/k8s-resource-files/test-execution.yaml similarity index 100% rename from theodolite-quarkus/src/test/resources/k8s-resource-files/test-execution.yaml rename to theodolite/src/test/resources/k8s-resource-files/test-execution.yaml diff --git a/theodolite-quarkus/src/test/resources/k8s-resource-files/test-service-monitor.yaml b/theodolite/src/test/resources/k8s-resource-files/test-service-monitor.yaml similarity index 100% rename from theodolite-quarkus/src/test/resources/k8s-resource-files/test-service-monitor.yaml rename to theodolite/src/test/resources/k8s-resource-files/test-service-monitor.yaml diff --git a/theodolite-quarkus/src/test/resources/k8s-resource-files/test-service.yaml b/theodolite/src/test/resources/k8s-resource-files/test-service.yaml similarity index 100% rename from theodolite-quarkus/src/test/resources/k8s-resource-files/test-service.yaml rename to theodolite/src/test/resources/k8s-resource-files/test-service.yaml diff --git a/theodolite-quarkus/src/test/resources/k8s-resource-files/test-statefulset.yaml b/theodolite/src/test/resources/k8s-resource-files/test-statefulset.yaml similarity index 100% rename from theodolite-quarkus/src/test/resources/k8s-resource-files/test-statefulset.yaml rename to theodolite/src/test/resources/k8s-resource-files/test-statefulset.yaml diff --git a/theodolite-quarkus/src/test/resources/memory-deployment.yaml b/theodolite/src/test/resources/memory-deployment.yaml similarity index 100% rename from theodolite-quarkus/src/test/resources/memory-deployment.yaml rename to theodolite/src/test/resources/memory-deployment.yaml diff --git a/theodolite-quarkus/src/test/resources/no-resources-deployment.yaml b/theodolite/src/test/resources/no-resources-deployment.yaml similarity index 100% rename from theodolite-quarkus/src/test/resources/no-resources-deployment.yaml rename to theodolite/src/test/resources/no-resources-deployment.yaml