| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?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">
- <parent>
- <artifactId>graphql-demo</artifactId>
- <groupId>com.remy</groupId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>graphql-api</artifactId>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.graphql-java-kickstart</groupId>
- <artifactId>graphql-spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.graphql-java-kickstart</groupId>
- <artifactId>graphiql-spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.graphql-java-kickstart</groupId>
- <artifactId>playground-spring-boot-starter</artifactId>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>com.graphql-java-kickstart</groupId>-->
- <!-- <artifactId>voyager-spring-boot-starter</artifactId>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>com.graphql-java-kickstart</groupId>
- <artifactId>graphql-java-tools</artifactId>
- </dependency>
- <dependency>
- <groupId>com.graphql-java-kickstart</groupId>
- <artifactId>graphql-spring-boot-starter-test</artifactId>
- </dependency>
- <dependency>
- <groupId>com.remy</groupId>
- <artifactId>common-module</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.8.1</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- <encoding>UTF-8</encoding>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>2.3.7.RELEASE</version>
- <configuration>
- <mainClass>com.remy.graphql.GraphqlApplication</mainClass>
- </configuration>
- <executions>
- <execution>
- <id>repackage</id>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|