46 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			46 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
|  | <?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>spring-boot-libraries-comparison</artifactId> | ||
|  | 
 | ||
|  |     <parent> | ||
|  |         <groupId>com.baeldung.spring-boot-modules</groupId> | ||
|  |         <artifactId>spring-boot-modules</artifactId> | ||
|  |         <version>1.0.0-SNAPSHOT</version> | ||
|  |     </parent> | ||
|  | 
 | ||
|  |     <dependencies> | ||
|  |         <dependency> | ||
|  |             <groupId>org.springframework.boot</groupId> | ||
|  |             <artifactId>spring-boot-starter-web</artifactId> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.springframework.data</groupId> | ||
|  |             <artifactId>spring-data-jpa</artifactId> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>com.graphql-java</groupId> | ||
|  |             <artifactId>graphql-spring-boot-starter</artifactId> | ||
|  |             <version>${graphql-spring-boot-starter.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>com.graphql-java</groupId> | ||
|  |             <artifactId>graphql-java-tools</artifactId> | ||
|  |             <version>${graphql-java-tools.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>com.graphql-java</groupId> | ||
|  |             <artifactId>graphiql-spring-boot-starter</artifactId> | ||
|  |             <version>${graphql-spring-boot-starter.version}</version> | ||
|  |         </dependency> | ||
|  |     </dependencies> | ||
|  | 
 | ||
|  | 
 | ||
|  |     <properties> | ||
|  |         <graphql-spring-boot-starter.version>5.0.2</graphql-spring-boot-starter.version> | ||
|  |         <graphql-java-tools.version>5.2.4</graphql-java-tools.version> | ||
|  |     </properties> | ||
|  | 
 | ||
|  | </project> |