pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>graphql-demo</artifactId>
  7. <groupId>com.remy</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>graphql-api</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.graphql-java-kickstart</groupId>
  19. <artifactId>graphql-spring-boot-starter</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.graphql-java-kickstart</groupId>
  23. <artifactId>graphiql-spring-boot-starter</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.graphql-java-kickstart</groupId>
  27. <artifactId>playground-spring-boot-starter</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.graphql-java-kickstart</groupId>
  31. <artifactId>voyager-spring-boot-starter</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.graphql-java-kickstart</groupId>
  35. <artifactId>graphql-java-tools</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.graphql-java-kickstart</groupId>
  39. <artifactId>graphql-spring-boot-starter-test</artifactId>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-compiler-plugin</artifactId>
  47. <version>3.8.1</version>
  48. <configuration>
  49. <source>1.8</source>
  50. <target>1.8</target>
  51. <encoding>UTF-8</encoding>
  52. </configuration>
  53. </plugin>
  54. <plugin>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-maven-plugin</artifactId>
  57. <version>2.3.7.RELEASE</version>
  58. <configuration>
  59. <mainClass>com.remy.graphql.GraphqlApplication</mainClass>
  60. </configuration>
  61. <executions>
  62. <execution>
  63. <id>repackage</id>
  64. <goals>
  65. <goal>repackage</goal>
  66. </goals>
  67. </execution>
  68. </executions>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. </project>