pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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>graphql-spring-boot-starter-test</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.remy</groupId>
  35. <artifactId>common-module</artifactId>
  36. </dependency>
  37. </dependencies>
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-compiler-plugin</artifactId>
  43. <version>3.8.1</version>
  44. <configuration>
  45. <source>1.8</source>
  46. <target>1.8</target>
  47. <encoding>UTF-8</encoding>
  48. </configuration>
  49. </plugin>
  50. <plugin>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-maven-plugin</artifactId>
  53. <version>2.3.7.RELEASE</version>
  54. <configuration>
  55. <mainClass>com.remy.graphql.GraphqlApplication</mainClass>
  56. </configuration>
  57. <executions>
  58. <execution>
  59. <id>repackage</id>
  60. <goals>
  61. <goal>repackage</goal>
  62. </goals>
  63. </execution>
  64. </executions>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. </project>