From 8bc88d21e7ab0aa5d8ce163082a048ac4986dbc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <soeren.henning@email.uni-kiel.de> Date: Wed, 23 Feb 2022 17:07:48 +0100 Subject: [PATCH] Align package structure for HTTP Bridge --- theodolite-benchmarks/http-bridge/build.gradle | 7 +++++-- .../theodolite/benchmarks}/httpbridge/Deserializer.java | 2 +- .../theodolite/benchmarks}/httpbridge/Endpoint.java | 2 +- .../benchmarks}/httpbridge/EnvVarHttpBridgeFactory.java | 2 +- .../benchmarks}/httpbridge/GsonDeserializer.java | 2 +- .../theodolite/benchmarks}/httpbridge/HttpBridge.java | 2 +- .../benchmarks}/httpbridge/JavalinWebServer.java | 2 +- 7 files changed, 11 insertions(+), 8 deletions(-) rename theodolite-benchmarks/http-bridge/src/main/java/{theodolite/commons => rocks/theodolite/benchmarks}/httpbridge/Deserializer.java (80%) rename theodolite-benchmarks/http-bridge/src/main/java/{theodolite/commons => rocks/theodolite/benchmarks}/httpbridge/Endpoint.java (96%) rename theodolite-benchmarks/http-bridge/src/main/java/{theodolite/commons => rocks/theodolite/benchmarks}/httpbridge/EnvVarHttpBridgeFactory.java (97%) rename theodolite-benchmarks/http-bridge/src/main/java/{theodolite/commons => rocks/theodolite/benchmarks}/httpbridge/GsonDeserializer.java (92%) rename theodolite-benchmarks/http-bridge/src/main/java/{theodolite/commons => rocks/theodolite/benchmarks}/httpbridge/HttpBridge.java (95%) rename theodolite-benchmarks/http-bridge/src/main/java/{theodolite/commons => rocks/theodolite/benchmarks}/httpbridge/JavalinWebServer.java (96%) diff --git a/theodolite-benchmarks/http-bridge/build.gradle b/theodolite-benchmarks/http-bridge/build.gradle index 0377eefc7..4c620b2db 100644 --- a/theodolite-benchmarks/http-bridge/build.gradle +++ b/theodolite-benchmarks/http-bridge/build.gradle @@ -6,8 +6,6 @@ plugins { id 'application' } -tasks.distZip.enabled = false - repositories { mavenCentral() maven { @@ -29,3 +27,8 @@ dependencies { testImplementation 'junit:junit:4.12' } + + +tasks.distZip.enabled = false + +mainClassName = "rocks.theodolite.benchmarks.httpbridge.HttpBridge" diff --git a/theodolite-benchmarks/http-bridge/src/main/java/theodolite/commons/httpbridge/Deserializer.java b/theodolite-benchmarks/http-bridge/src/main/java/rocks/theodolite/benchmarks/httpbridge/Deserializer.java similarity index 80% rename from theodolite-benchmarks/http-bridge/src/main/java/theodolite/commons/httpbridge/Deserializer.java rename to theodolite-benchmarks/http-bridge/src/main/java/rocks/theodolite/benchmarks/httpbridge/Deserializer.java index f25c120d2..80f325691 100644 --- a/theodolite-benchmarks/http-bridge/src/main/java/theodolite/commons/httpbridge/Deserializer.java +++ b/theodolite-benchmarks/http-bridge/src/main/java/rocks/theodolite/benchmarks/httpbridge/Deserializer.java @@ -1,4 +1,4 @@ -package theodolite.commons.httpbridge; +package rocks.theodolite.benchmarks.httpbridge; /** * A class for converting objects to strings. diff --git a/theodolite-benchmarks/http-bridge/src/main/java/theodolite/commons/httpbridge/Endpoint.java b/theodolite-benchmarks/http-bridge/src/main/java/rocks/theodolite/benchmarks/httpbridge/Endpoint.java similarity index 96% rename from theodolite-benchmarks/http-bridge/src/main/java/theodolite/commons/httpbridge/Endpoint.java rename to theodolite-benchmarks/http-bridge/src/main/java/rocks/theodolite/benchmarks/httpbridge/Endpoint.java index 43850d806..996643808 100644 --- a/theodolite-benchmarks/http-bridge/src/main/java/theodolite/commons/httpbridge/Endpoint.java +++ b/theodolite-benchmarks/http-bridge/src/main/java/rocks/theodolite/benchmarks/httpbridge/Endpoint.java @@ -1,4 +1,4 @@ -package theodolite.commons.httpbridge; +package rocks.theodolite.benchmarks.httpbridge; import theodolite.commons.workloadgeneration.RecordSender; diff --git a/theodolite-benchmarks/http-bridge/src/main/java/theodolite/commons/httpbridge/EnvVarHttpBridgeFactory.java b/theodolite-benchmarks/http-bridge/src/main/java/rocks/theodolite/benchmarks/httpbridge/EnvVarHttpBridgeFactory.java similarity index 97% rename from theodolite-benchmarks/http-bridge/src/main/java/theodolite/commons/httpbridge/EnvVarHttpBridgeFactory.java rename to theodolite-benchmarks/http-bridge/src/main/java/rocks/theodolite/benchmarks/httpbridge/EnvVarHttpBridgeFactory.java index 97956b8d4..cec47284c 100644 --- a/theodolite-benchmarks/http-bridge/src/main/java/theodolite/commons/httpbridge/EnvVarHttpBridgeFactory.java +++ b/theodolite-benchmarks/http-bridge/src/main/java/rocks/theodolite/benchmarks/httpbridge/EnvVarHttpBridgeFactory.java @@ -1,4 +1,4 @@ -package theodolite.commons.httpbridge; +package rocks.theodolite.benchmarks.httpbridge; import java.util.List; import java.util.Objects; diff --git a/theodolite-benchmarks/http-bridge/src/main/java/theodolite/commons/httpbridge/GsonDeserializer.java b/theodolite-benchmarks/http-bridge/src/main/java/rocks/theodolite/benchmarks/httpbridge/GsonDeserializer.java similarity index 92% rename from theodolite-benchmarks/http-bridge/src/main/java/theodolite/commons/httpbridge/GsonDeserializer.java rename to theodolite-benchmarks/http-bridge/src/main/java/rocks/theodolite/benchmarks/httpbridge/GsonDeserializer.java index 422206175..947e78947 100644 --- a/theodolite-benchmarks/http-bridge/src/main/java/theodolite/commons/httpbridge/GsonDeserializer.java +++ b/theodolite-benchmarks/http-bridge/src/main/java/rocks/theodolite/benchmarks/httpbridge/GsonDeserializer.java @@ -1,4 +1,4 @@ -package theodolite.commons.httpbridge; +package rocks.theodolite.benchmarks.httpbridge; import com.google.gson.Gson; diff --git a/theodolite-benchmarks/http-bridge/src/main/java/theodolite/commons/httpbridge/HttpBridge.java b/theodolite-benchmarks/http-bridge/src/main/java/rocks/theodolite/benchmarks/httpbridge/HttpBridge.java similarity index 95% rename from theodolite-benchmarks/http-bridge/src/main/java/theodolite/commons/httpbridge/HttpBridge.java rename to theodolite-benchmarks/http-bridge/src/main/java/rocks/theodolite/benchmarks/httpbridge/HttpBridge.java index d36e191c8..fdcdea12a 100644 --- a/theodolite-benchmarks/http-bridge/src/main/java/theodolite/commons/httpbridge/HttpBridge.java +++ b/theodolite-benchmarks/http-bridge/src/main/java/rocks/theodolite/benchmarks/httpbridge/HttpBridge.java @@ -1,4 +1,4 @@ -package theodolite.commons.httpbridge; +package rocks.theodolite.benchmarks.httpbridge; import java.util.List; import theodolite.commons.workloadgeneration.RecordSender; diff --git a/theodolite-benchmarks/http-bridge/src/main/java/theodolite/commons/httpbridge/JavalinWebServer.java b/theodolite-benchmarks/http-bridge/src/main/java/rocks/theodolite/benchmarks/httpbridge/JavalinWebServer.java similarity index 96% rename from theodolite-benchmarks/http-bridge/src/main/java/theodolite/commons/httpbridge/JavalinWebServer.java rename to theodolite-benchmarks/http-bridge/src/main/java/rocks/theodolite/benchmarks/httpbridge/JavalinWebServer.java index c23a17588..4b28e515c 100644 --- a/theodolite-benchmarks/http-bridge/src/main/java/theodolite/commons/httpbridge/JavalinWebServer.java +++ b/theodolite-benchmarks/http-bridge/src/main/java/rocks/theodolite/benchmarks/httpbridge/JavalinWebServer.java @@ -1,4 +1,4 @@ -package theodolite.commons.httpbridge; +package rocks.theodolite.benchmarks.httpbridge; import io.javalin.Javalin; import java.util.Collection; -- GitLab