From d3249a47f53dcd212fc59e73007810d17c476331 Mon Sep 17 00:00:00 2001 From: David Roden Date: Thu, 23 Jan 2025 19:51:08 +0100 Subject: [PATCH] =?utf8?q?=F0=9F=8F=97=EF=B8=8F=20Split=20project=20into?= =?utf8?q?=20client=20and=20server=20components?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Also, move to Java 21 and using toolchains. --- client/pom.xml | 17 +++++++++++++++++ pom.xml | 49 +++++++++++++++++++++++++++++++++++++++++++++++-- server/pom.xml | 17 +++++++++++++++++ 3 files changed, 81 insertions(+), 2 deletions(-) create mode 100644 client/pom.xml create mode 100644 server/pom.xml diff --git a/client/pom.xml b/client/pom.xml new file mode 100644 index 0000000..4cd574c --- /dev/null +++ b/client/pom.xml @@ -0,0 +1,17 @@ + + + 4.0.0 + + + de.qsheltier + msta + 0.1-SNAPSHOT + + + msta-client + + MSTA – Client + Manual Software Testing Avoidance – Client Component + + diff --git a/pom.xml b/pom.xml index 6d60724..4d51132 100644 --- a/pom.xml +++ b/pom.xml @@ -6,13 +6,14 @@ de.qsheltier msta 0.1-SNAPSHOT + pom - msta + MSTA Manual Software Testing Avoidance UTF-8 - 17 + 21 @@ -24,6 +25,12 @@ pom import + + org.hamcrest + hamcrest + 3.0 + test + @@ -39,12 +46,38 @@ junit-jupiter-params test + + org.hamcrest + hamcrest + test + + org.apache.maven.plugins + maven-toolchains-plugin + 3.1.0 + + + validate + + toolchain + + + + + + + 21 + temurin + + + + + maven-clean-plugin 3.4.0 @@ -84,5 +117,17 @@ + + + org.apache.maven.plugins + maven-toolchains-plugin + + + + + + server + client + diff --git a/server/pom.xml b/server/pom.xml new file mode 100644 index 0000000..bb53ad9 --- /dev/null +++ b/server/pom.xml @@ -0,0 +1,17 @@ + + + 4.0.0 + + + de.qsheltier + msta + 0.1-SNAPSHOT + + + msta-server + + MSTA – Server + Manual Software Testing Avoidance – Server Component + + -- 2.7.4