This is an automated email from the ASF dual-hosted git repository. danhaywood pushed a commit to branch CAUSEWAY-3676 in repository https://gitbox.apache.org/repos/asf/causeway.git
commit c11be5b078d1467a83afec6c157ba75e2104d7d5 Author: danhaywood <[email protected]> AuthorDate: Thu Mar 7 15:07:41 2024 +0000 CAUSEWAY-3676: ensures that testsupport is built --- viewers/graphql/pom.xml | 4 ++-- viewers/graphql/test/pom.xml | 17 ----------------- viewers/graphql/testsupport/pom.xml | 5 ++--- 3 files changed, 4 insertions(+), 22 deletions(-) diff --git a/viewers/graphql/pom.xml b/viewers/graphql/pom.xml index 4c7c3bbbdf..726c6b7ae0 100644 --- a/viewers/graphql/pom.xml +++ b/viewers/graphql/pom.xml @@ -50,9 +50,9 @@ <modules> <module>applib</module> <module>model</module> - <module>viewer</module> - <module>test</module> <module>testsupport</module> + <module>test</module> + <module>viewer</module> </modules> </project> diff --git a/viewers/graphql/test/pom.xml b/viewers/graphql/test/pom.xml index b183c36ba5..07434093d1 100644 --- a/viewers/graphql/test/pom.xml +++ b/viewers/graphql/test/pom.xml @@ -47,22 +47,6 @@ </properties> - <dependencyManagement> - <dependencies> - - <dependency> - <groupId>com.github.gavlyukovskiy</groupId> - <artifactId>datasource-proxy-spring-boot-starter</artifactId> - <version>${datasource-proxy-spring-boot-starter.version}</version> - </dependency> - <dependency> - <groupId>com.github.vertical-blank</groupId> - <artifactId>sql-formatter</artifactId> - <version>${sql-formatter.version}</version> - </dependency> - </dependencies> - </dependencyManagement> - <build> <testResources> <testResource> @@ -89,7 +73,6 @@ <artifactId>causeway-viewer-graphql-testsupport</artifactId> <scope>test</scope> </dependency> - </dependencies> diff --git a/viewers/graphql/testsupport/pom.xml b/viewers/graphql/testsupport/pom.xml index b55b959c2d..82a0f21383 100644 --- a/viewers/graphql/testsupport/pom.xml +++ b/viewers/graphql/testsupport/pom.xml @@ -35,14 +35,13 @@ <properties> <jar-plugin.automaticModuleName>org.apache.causeway.viewer.graphql.testsupport</jar-plugin.automaticModuleName> <git-plugin.propertiesDir>org/apache/causeway/viewer/graphql/testsupport</git-plugin.propertiesDir> - <maven.install.skip>true</maven.install.skip> - <maven.deploy.skip>true</maven.deploy.skip> <!-- as a minimum requirement of org.springframework.graphql:spring-graphql-test:1.2.4 --> <maven.compiler.release>17</maven.compiler.release> <datasource-proxy-spring-boot-starter.version>1.8.1</datasource-proxy-spring-boot-starter.version> + <spring-graphql-test.version>1.2.5</spring-graphql-test.version> <sql-formatter.version>2.0.4</sql-formatter.version> </properties> @@ -138,7 +137,7 @@ <dependency> <groupId>org.springframework.graphql</groupId> <artifactId>spring-graphql-test</artifactId> - <version>1.2.5</version> + <version>${spring-graphql-test.version}</version> </dependency> <dependency>
