This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 4a43b8b8ac ISIS-3198: fixes prev. commit
4a43b8b8ac is described below

commit 4a43b8b8acaca35906383c10705c0a71e72873e3
Author: Andi Huber <[email protected]>
AuthorDate: Thu Sep 15 08:08:16 2022 +0200

    ISIS-3198: fixes prev. commit
    
    - split out graphql.test into its own artifact (JPMS test resource
    loading issues with Spring 5.x)
---
 incubator/viewers/graphql/pom.xml                  |  1 +
 incubator/viewers/graphql/{viewer => test}/pom.xml | 26 +++----------
 .../viewer/graphql/viewer/test/source}/.gitignore  |  0
 .../EndToEnd_IntegTest.changeName.approved.gql     |  0
 .../EndToEnd_IntegTest.changeName.submit.gql       |  0
 .../EndToEnd_IntegTest.createE1.approved.gql       |  0
 .../source}/EndToEnd_IntegTest.createE1.submit.gql |  0
 .../EndToEnd_IntegTest.findAllE1.approved.gql      |  0
 .../EndToEnd_IntegTest.findAllE1.submit.gql        |  0
 .../viewer/test/source}/EndToEnd_IntegTest.java    | 10 ++---
 ...oEnd_IntegTest.simple_post_request.approved.gql |  0
 ...dToEnd_IntegTest.simple_post_request.submit.gql |  0
 .../viewer/test/source}/GQLSchema_IntegTest.java   |  8 ++--
 .../graphql/viewer/test/source}/ScratchPad.java    |  2 +-
 .../source}/TestDomainModuleIntegTestAbstract.java |  4 +-
 .../viewer/test/source}/gqltestdomain/E1.java      |  2 +-
 .../viewer/test/source}/gqltestdomain/E2.java      |  2 +-
 .../source}/gqltestdomain/GQLTestDomainMenu.java   |  2 +-
 .../source}/gqltestdomain/TestDomainModule.java    |  2 +-
 .../test/source}/gqltestdomain/TestEntity.java     |  2 +-
 .../gqltestdomain/TestEntityRepository.java        |  2 +-
 incubator/viewers/graphql/viewer/pom.xml           | 44 ----------------------
 22 files changed, 24 insertions(+), 83 deletions(-)

diff --git a/incubator/viewers/graphql/pom.xml 
b/incubator/viewers/graphql/pom.xml
index b610e469d9..0a0962cd74 100644
--- a/incubator/viewers/graphql/pom.xml
+++ b/incubator/viewers/graphql/pom.xml
@@ -93,6 +93,7 @@
                <module>applib</module>
                <module>model</module>
                <module>viewer</module>
+               <module>test</module>
        </modules>
 
 </project>
diff --git a/incubator/viewers/graphql/viewer/pom.xml 
b/incubator/viewers/graphql/test/pom.xml
similarity index 80%
copy from incubator/viewers/graphql/viewer/pom.xml
copy to incubator/viewers/graphql/test/pom.xml
index e5daa9cf5e..7af8ee58c9 100644
--- a/incubator/viewers/graphql/viewer/pom.xml
+++ b/incubator/viewers/graphql/test/pom.xml
@@ -21,12 +21,12 @@
                <version>2.0.0-SNAPSHOT</version>
        </parent>
 
-       <artifactId>isis-viewer-graphql-viewer</artifactId>
-       <name>Apache Isis Inc - Viewer GraphQL (Viewer)</name>
+       <artifactId>isis-viewer-graphql-test</artifactId>
+       <name>Apache Isis Inc - Viewer GraphQL (Test)</name>
 
        <properties>
-               
<jar-plugin.automaticModuleName>org.apache.isis.incubator.viewer.graphql.viewer</jar-plugin.automaticModuleName>
-               
<git-plugin.propertiesDir>org/apache/isis/incubator/viewer/graphql/viewer</git-plugin.propertiesDir>
+               
<jar-plugin.automaticModuleName>org.apache.isis.incubator.viewer.graphql.test</jar-plugin.automaticModuleName>
+               
<git-plugin.propertiesDir>org/apache/isis/incubator/viewer/graphql/test</git-plugin.propertiesDir>
        </properties>
 
        <build>
@@ -41,23 +41,7 @@
 
                <dependency>
                        <groupId>org.apache.isis.incubator.viewer</groupId>
-                       <artifactId>isis-viewer-graphql-model</artifactId>
-               </dependency>
-
-               <dependency>
-                       <groupId>org.apache.isis.core</groupId>
-                       <artifactId>isis-core-webapp</artifactId>
-               </dependency>
-
-               <dependency>
-                       <groupId>org.springframework.boot</groupId>
-                       <artifactId>spring-boot-starter-websocket</artifactId>
-                       <exclusions>
-                               <exclusion>
-                                       
<groupId>org.springframework.boot</groupId>
-                                       
<artifactId>spring-boot-starter-logging</artifactId>
-                               </exclusion>
-                       </exclusions>
+                       <artifactId>isis-viewer-graphql-viewer</artifactId>
                </dependency>
 
                <!-- TESTING -->
diff --git 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/.gitignore
 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/.gitignore
similarity index 100%
rename from 
incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/.gitignore
rename to 
incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/.gitignore
diff --git 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/EndToEnd_IntegTest.changeName.approved.gql
 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/EndToEnd_IntegTest.changeName.approved.gql
similarity index 100%
rename from 
incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/EndToEnd_IntegTest.changeName.approved.gql
rename to 
incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/EndToEnd_IntegTest.changeName.approved.gql
diff --git 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/EndToEnd_IntegTest.changeName.submit.gql
 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/EndToEnd_IntegTest.changeName.submit.gql
similarity index 100%
rename from 
incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/EndToEnd_IntegTest.changeName.submit.gql
rename to 
incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/EndToEnd_IntegTest.changeName.submit.gql
diff --git 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/EndToEnd_IntegTest.createE1.approved.gql
 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/EndToEnd_IntegTest.createE1.approved.gql
similarity index 100%
rename from 
incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/EndToEnd_IntegTest.createE1.approved.gql
rename to 
incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/EndToEnd_IntegTest.createE1.approved.gql
diff --git 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/EndToEnd_IntegTest.createE1.submit.gql
 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/EndToEnd_IntegTest.createE1.submit.gql
similarity index 100%
rename from 
incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/EndToEnd_IntegTest.createE1.submit.gql
rename to 
incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/EndToEnd_IntegTest.createE1.submit.gql
diff --git 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/EndToEnd_IntegTest.findAllE1.approved.gql
 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/EndToEnd_IntegTest.findAllE1.approved.gql
similarity index 100%
rename from 
incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/EndToEnd_IntegTest.findAllE1.approved.gql
rename to 
incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/EndToEnd_IntegTest.findAllE1.approved.gql
diff --git 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/EndToEnd_IntegTest.findAllE1.submit.gql
 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/EndToEnd_IntegTest.findAllE1.submit.gql
similarity index 100%
rename from 
incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/EndToEnd_IntegTest.findAllE1.submit.gql
rename to 
incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/EndToEnd_IntegTest.findAllE1.submit.gql
diff --git 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/EndToEnd_IntegTest.java
 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/EndToEnd_IntegTest.java
similarity index 96%
rename from 
incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/EndToEnd_IntegTest.java
rename to 
incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/EndToEnd_IntegTest.java
index 08c669a6e3..2bd4639d1e 100644
--- 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/EndToEnd_IntegTest.java
+++ 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/EndToEnd_IntegTest.java
@@ -16,7 +16,7 @@
  *  specific language governing permissions and limitations
  *  under the License.
  */
-package org.apache.isis.viewer.graphql.viewer.source.test;
+package org.apache.isis.viewer.graphql.viewer.test.source;
 
 import java.io.File;
 import java.io.IOException;
@@ -53,10 +53,10 @@ import 
org.apache.isis.commons.internal.resources._Resources;
 import org.apache.isis.core.config.environment.IsisSystemEnvironment;
 import org.apache.isis.core.metamodel.specloader.SpecificationLoader;
 import org.apache.isis.viewer.graphql.viewer.source.GraphQlSourceForIsis;
-import org.apache.isis.viewer.graphql.viewer.source.test.gqltestdomain.E1;
-import org.apache.isis.viewer.graphql.viewer.source.test.gqltestdomain.E2;
-import 
org.apache.isis.viewer.graphql.viewer.source.test.gqltestdomain.GQLTestDomainMenu;
-import 
org.apache.isis.viewer.graphql.viewer.source.test.gqltestdomain.TestEntityRepository;
+import org.apache.isis.viewer.graphql.viewer.test.source.gqltestdomain.E1;
+import org.apache.isis.viewer.graphql.viewer.test.source.gqltestdomain.E2;
+import 
org.apache.isis.viewer.graphql.viewer.test.source.gqltestdomain.GQLTestDomainMenu;
+import 
org.apache.isis.viewer.graphql.viewer.test.source.gqltestdomain.TestEntityRepository;
 
 import static org.apache.isis.commons.internal.assertions._Assert.assertEquals;
 import static 
org.apache.isis.commons.internal.assertions._Assert.assertNotNull;
diff --git 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/EndToEnd_IntegTest.simple_post_request.approved.gql
 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/EndToEnd_IntegTest.simple_post_request.approved.gql
similarity index 100%
rename from 
incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/EndToEnd_IntegTest.simple_post_request.approved.gql
rename to 
incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/EndToEnd_IntegTest.simple_post_request.approved.gql
diff --git 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/EndToEnd_IntegTest.simple_post_request.submit.gql
 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/EndToEnd_IntegTest.simple_post_request.submit.gql
similarity index 100%
rename from 
incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/EndToEnd_IntegTest.simple_post_request.submit.gql
rename to 
incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/EndToEnd_IntegTest.simple_post_request.submit.gql
diff --git 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/GQLSchema_IntegTest.java
 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/GQLSchema_IntegTest.java
similarity index 96%
rename from 
incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/GQLSchema_IntegTest.java
rename to 
incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/GQLSchema_IntegTest.java
index ddafecd786..0e362e89a8 100644
--- 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/GQLSchema_IntegTest.java
+++ 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/GQLSchema_IntegTest.java
@@ -16,7 +16,7 @@
  *  specific language governing permissions and limitations
  *  under the License.
  */
-package org.apache.isis.viewer.graphql.viewer.source.test;
+package org.apache.isis.viewer.graphql.viewer.test.source;
 
 import java.util.List;
 
@@ -31,9 +31,9 @@ import 
org.apache.isis.core.config.environment.IsisSystemEnvironment;
 import org.apache.isis.core.metamodel.spec.ObjectSpecification;
 import org.apache.isis.core.metamodel.specloader.SpecificationLoader;
 import org.apache.isis.viewer.graphql.viewer.source.GraphQlSourceForIsis;
-import org.apache.isis.viewer.graphql.viewer.source.test.gqltestdomain.E1;
-import org.apache.isis.viewer.graphql.viewer.source.test.gqltestdomain.E2;
-import 
org.apache.isis.viewer.graphql.viewer.source.test.gqltestdomain.GQLTestDomainMenu;
+import org.apache.isis.viewer.graphql.viewer.test.source.gqltestdomain.E1;
+import org.apache.isis.viewer.graphql.viewer.test.source.gqltestdomain.E2;
+import 
org.apache.isis.viewer.graphql.viewer.test.source.gqltestdomain.GQLTestDomainMenu;
 
 import static org.apache.isis.commons.internal.assertions._Assert.assertEquals;
 import static 
org.apache.isis.commons.internal.assertions._Assert.assertNotNull;
diff --git 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/ScratchPad.java
 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/ScratchPad.java
similarity index 97%
rename from 
incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/ScratchPad.java
rename to 
incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/ScratchPad.java
index 29769c7975..7269eee0a6 100644
--- 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/ScratchPad.java
+++ 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/ScratchPad.java
@@ -16,7 +16,7 @@
  *  specific language governing permissions and limitations
  *  under the License.
  */
-package org.apache.isis.viewer.graphql.viewer.source.test;
+package org.apache.isis.viewer.graphql.viewer.test.source;
 
 import graphql.Scalars;
 import graphql.schema.*;
diff --git 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/TestDomainModuleIntegTestAbstract.java
 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/TestDomainModuleIntegTestAbstract.java
similarity index 96%
rename from 
incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/TestDomainModuleIntegTestAbstract.java
rename to 
incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/TestDomainModuleIntegTestAbstract.java
index aee58f55c8..44a6e1fa37 100644
--- 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/TestDomainModuleIntegTestAbstract.java
+++ 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/TestDomainModuleIntegTestAbstract.java
@@ -16,7 +16,7 @@
  *  specific language governing permissions and limitations
  *  under the License.
  */
-package org.apache.isis.viewer.graphql.viewer.source.test;
+package org.apache.isis.viewer.graphql.viewer.test.source;
 
 import org.springframework.boot.SpringBootConfiguration;
 import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
@@ -34,7 +34,7 @@ import 
org.apache.isis.persistence.jpa.eclipselink.IsisModulePersistenceJpaEclip
 import org.apache.isis.security.bypass.IsisModuleSecurityBypass;
 import org.apache.isis.testing.fixtures.applib.IsisModuleTestingFixturesApplib;
 import org.apache.isis.viewer.graphql.viewer.IsisModuleIncViewerGraphqlViewer;
-import 
org.apache.isis.viewer.graphql.viewer.source.test.gqltestdomain.TestDomainModule;
+import 
org.apache.isis.viewer.graphql.viewer.test.source.gqltestdomain.TestDomainModule;
 
 @SpringBootTest(
         classes = {
diff --git 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/gqltestdomain/E1.java
 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/gqltestdomain/E1.java
similarity index 96%
rename from 
incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/gqltestdomain/E1.java
rename to 
incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/gqltestdomain/E1.java
index 7baa1a7c9f..970612ce02 100644
--- 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/gqltestdomain/E1.java
+++ 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/gqltestdomain/E1.java
@@ -16,7 +16,7 @@
  *  specific language governing permissions and limitations
  *  under the License.
  */
-package org.apache.isis.viewer.graphql.viewer.source.test.gqltestdomain;
+package org.apache.isis.viewer.graphql.viewer.test.source.gqltestdomain;
 
 import javax.inject.Named;
 import javax.persistence.Entity;
diff --git 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/gqltestdomain/E2.java
 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/gqltestdomain/E2.java
similarity index 98%
rename from 
incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/gqltestdomain/E2.java
rename to 
incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/gqltestdomain/E2.java
index 0421e13e75..811a0c569e 100644
--- 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/gqltestdomain/E2.java
+++ 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/gqltestdomain/E2.java
@@ -16,7 +16,7 @@
  *  specific language governing permissions and limitations
  *  under the License.
  */
-package org.apache.isis.viewer.graphql.viewer.source.test.gqltestdomain;
+package org.apache.isis.viewer.graphql.viewer.test.source.gqltestdomain;
 
 import java.util.ArrayList;
 import java.util.List;
diff --git 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/gqltestdomain/GQLTestDomainMenu.java
 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/gqltestdomain/GQLTestDomainMenu.java
similarity index 97%
rename from 
incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/gqltestdomain/GQLTestDomainMenu.java
rename to 
incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/gqltestdomain/GQLTestDomainMenu.java
index 167694313a..795538c483 100644
--- 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/gqltestdomain/GQLTestDomainMenu.java
+++ 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/gqltestdomain/GQLTestDomainMenu.java
@@ -16,7 +16,7 @@
  *  specific language governing permissions and limitations
  *  under the License.
  */
-package org.apache.isis.viewer.graphql.viewer.source.test.gqltestdomain;
+package org.apache.isis.viewer.graphql.viewer.test.source.gqltestdomain;
 
 import java.util.List;
 
diff --git 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/gqltestdomain/TestDomainModule.java
 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/gqltestdomain/TestDomainModule.java
similarity index 96%
rename from 
incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/gqltestdomain/TestDomainModule.java
rename to 
incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/gqltestdomain/TestDomainModule.java
index 18a46f0120..cc670b80b4 100644
--- 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/gqltestdomain/TestDomainModule.java
+++ 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/gqltestdomain/TestDomainModule.java
@@ -16,7 +16,7 @@
  *  specific language governing permissions and limitations
  *  under the License.
  */
-package org.apache.isis.viewer.graphql.viewer.source.test.gqltestdomain;
+package org.apache.isis.viewer.graphql.viewer.test.source.gqltestdomain;
 
 import org.apache.isis.testing.fixtures.applib.fixturescripts.FixtureScript;
 import org.apache.isis.testing.fixtures.applib.modules.ModuleWithFixtures;
diff --git 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/gqltestdomain/TestEntity.java
 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/gqltestdomain/TestEntity.java
similarity index 93%
rename from 
incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/gqltestdomain/TestEntity.java
rename to 
incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/gqltestdomain/TestEntity.java
index e1a1e8d302..e865debc69 100644
--- 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/gqltestdomain/TestEntity.java
+++ 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/gqltestdomain/TestEntity.java
@@ -16,7 +16,7 @@
  *  specific language governing permissions and limitations
  *  under the License.
  */
-package org.apache.isis.viewer.graphql.viewer.source.test.gqltestdomain;
+package org.apache.isis.viewer.graphql.viewer.test.source.gqltestdomain;
 
 import org.apache.isis.applib.annotation.DomainObject;
 
diff --git 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/gqltestdomain/TestEntityRepository.java
 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/gqltestdomain/TestEntityRepository.java
similarity index 97%
rename from 
incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/gqltestdomain/TestEntityRepository.java
rename to 
incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/gqltestdomain/TestEntityRepository.java
index bb06c99455..8aeb101f6f 100644
--- 
a/incubator/viewers/graphql/viewer/src/test/java/org/apache/isis/viewer/graphql/viewer/source/test/gqltestdomain/TestEntityRepository.java
+++ 
b/incubator/viewers/graphql/test/src/test/java/org/apache/isis/viewer/graphql/viewer/test/source/gqltestdomain/TestEntityRepository.java
@@ -16,7 +16,7 @@
  *  specific language governing permissions and limitations
  *  under the License.
  */
-package org.apache.isis.viewer.graphql.viewer.source.test.gqltestdomain;
+package org.apache.isis.viewer.graphql.viewer.test.source.gqltestdomain;
 
 import java.util.ArrayList;
 import java.util.List;
diff --git a/incubator/viewers/graphql/viewer/pom.xml 
b/incubator/viewers/graphql/viewer/pom.xml
index e5daa9cf5e..f4071aa78f 100644
--- a/incubator/viewers/graphql/viewer/pom.xml
+++ b/incubator/viewers/graphql/viewer/pom.xml
@@ -60,50 +60,6 @@
                        </exclusions>
                </dependency>
 
-               <!-- TESTING -->
-
-               <dependency>
-                       <groupId>org.apache.isis.core</groupId>
-                       <artifactId>isis-core-internaltestsupport</artifactId>
-                       <scope>test</scope>
-               </dependency>
-               <dependency>
-                       <groupId>org.apache.isis.security</groupId>
-                       <artifactId>isis-security-bypass</artifactId>
-                       <scope>test</scope>
-               </dependency>
-               <dependency>
-                       <groupId>org.apache.isis.core</groupId>
-                       <artifactId>isis-core-runtimeservices</artifactId>
-                       <scope>test</scope>
-               </dependency>
-               <dependency>
-                       <groupId>org.apache.isis.testing</groupId>
-                       <artifactId>isis-testing-fixtures-applib</artifactId>
-                       <scope>test</scope>
-               </dependency>
-               <dependency>
-                       <groupId>com.h2database</groupId>
-                       <artifactId>h2</artifactId>
-                       <scope>test</scope>
-               </dependency>
-               <dependency>
-                       <groupId>com.approvaltests</groupId>
-                       <artifactId>approvaltests</artifactId>
-                       <scope>test</scope>
-               </dependency>
-               <dependency>
-                       <groupId>org.apache.isis.persistence</groupId>
-                       
<artifactId>isis-persistence-jpa-eclipselink</artifactId>
-                       <scope>test</scope>
-                       <exclusions>
-                               <exclusion>
-                                       
<groupId>org.eclipse.persistence</groupId>
-                                       
<artifactId>jakarta.persistence</artifactId>
-                               </exclusion>
-                       </exclusions>
-               </dependency>
-
        </dependencies>
 
 

Reply via email to