2022-03-14 21:46:13 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>graphql-spqr</artifactId>
|
2022-04-26 15:48:09 +02:00
|
|
|
<name>graphql-spqr</name>
|
2022-03-14 21:46:13 +01:00
|
|
|
|
|
|
|
<parent>
|
2022-04-26 15:48:09 +02:00
|
|
|
<groupId>com.baeldung.graphql</groupId>
|
2022-06-03 18:00:47 +05:30
|
|
|
<artifactId>graphql-modules</artifactId>
|
2022-03-14 21:46:13 +01:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.leangen.graphql</groupId>
|
2022-10-15 17:41:36 +01:00
|
|
|
<artifactId>spqr</artifactId>
|
|
|
|
<version>${spqr-version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
|
|
|
<scope>test</scope>
|
2022-03-14 21:46:13 +01:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
2022-10-15 17:41:36 +01:00
|
|
|
<spqr-version>0.11.2</spqr-version>
|
2022-03-14 21:46:13 +01:00
|
|
|
</properties>
|
2022-05-08 16:36:25 +05:30
|
|
|
|
2022-03-14 21:46:13 +01:00
|
|
|
</project>
|