pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. <dependency>
  42. <groupId>com.remy</groupId>
  43. <artifactId>common-module</artifactId>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. <plugins>
  48. <plugin>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-compiler-plugin</artifactId>
  51. <version>3.8.1</version>
  52. <configuration>
  53. <source>1.8</source>
  54. <target>1.8</target>
  55. <encoding>UTF-8</encoding>
  56. </configuration>
  57. </plugin>
  58. <plugin>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-maven-plugin</artifactId>
  61. <version>2.3.7.RELEASE</version>
  62. <configuration>
  63. <mainClass>com.remy.graphql.GraphqlApplication</mainClass>
  64. </configuration>
  65. <executions>
  66. <execution>
  67. <id>repackage</id>
  68. <goals>
  69. <goal>repackage</goal>
  70. </goals>
  71. </execution>
  72. </executions>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. </project>